Schnittstelle Char2ShortMap.Entry

Alle Superschnittstellen:
Map.Entry<Character,Short>
Alle bekannten Implementierungsklassen:
AbstractChar2ShortMap.BasicEntry, Char2ShortMaps.UnmodifyableEntry
Umschließende Schnittstelle:
Char2ShortMap

public static interface Char2ShortMap.Entry extends Map.Entry<Character,Short>
Type Specific Map Entry that reduces boxing/unboxing
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    char
    Type Specific getKey method that reduces boxing/unboxing
    default Character
     
    short
    Type Specific getValue method that reduces boxing/unboxing
    default Short
     
    short
    setValue(short value)
    Type Specific setValue method that reduces boxing/unboxing
    default Short
    setValue(Short value)
     

    Von Schnittstelle geerbte Methoden java.util.Map.Entry

    equals, hashCode
  • Methodendetails

    • getCharKey

      char getCharKey()
      Type Specific getKey method that reduces boxing/unboxing
      Gibt zurück:
      the key of a given Entry
    • getKey

      default Character getKey()
      Angegeben von:
      getKey in Schnittstelle Map.Entry<Character,Short>
    • getShortValue

      short getShortValue()
      Type Specific getValue method that reduces boxing/unboxing
      Gibt zurück:
      the value of a given Entry
    • setValue

      short setValue(short value)
      Type Specific setValue method that reduces boxing/unboxing
      Parameter:
      value - the new Value that should be placed in the given entry
      Gibt zurück:
      the old value of a given entry
      Löst aus:
      UnsupportedOperationException - if the Entry is immutable or not supported
    • getValue

      default Short getValue()
      Angegeben von:
      getValue in Schnittstelle Map.Entry<Character,Short>
    • setValue

      default Short setValue(Short value)
      Angegeben von:
      setValue in Schnittstelle Map.Entry<Character,Short>