Schnittstelle Short2ByteMap.Entry

Alle Superschnittstellen:
Map.Entry<Short,Byte>
Alle bekannten Implementierungsklassen:
AbstractShort2ByteMap.BasicEntry, Short2ByteMaps.UnmodifyableEntry
Umschließende Schnittstelle:
Short2ByteMap

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

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

    Von Schnittstelle geerbte Methoden java.util.Map.Entry

    equals, hashCode
  • Methodendetails

    • getShortKey

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

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

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

      byte setValue(byte 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 Byte getValue()
      Angegeben von:
      getValue in Schnittstelle Map.Entry<Short,Byte>
    • setValue

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