Schnittstelle Float2ByteMap.Entry

Alle Superschnittstellen:
Map.Entry<Float,Byte>
Alle bekannten Implementierungsklassen:
AbstractFloat2ByteMap.BasicEntry, Float2ByteMaps.UnmodifyableEntry
Umschließende Schnittstelle:
Float2ByteMap

public static interface Float2ByteMap.Entry extends Map.Entry<Float,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
    float
    Type Specific getKey method that reduces boxing/unboxing
    default Float
     
    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

    • getFloatKey

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

      default Float getKey()
      Angegeben von:
      getKey in Schnittstelle Map.Entry<Float,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<Float,Byte>
    • setValue

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