Schnittstelle Long2FloatMap.Entry

Alle Superschnittstellen:
Map.Entry<Long,Float>
Alle bekannten Implementierungsklassen:
AbstractLong2FloatMap.BasicEntry, Long2FloatMaps.UnmodifyableEntry
Umschließende Schnittstelle:
Long2FloatMap

public static interface Long2FloatMap.Entry extends Map.Entry<Long,Float>
Type Specific Map Entry that reduces boxing/unboxing
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    float
    Type Specific getValue method that reduces boxing/unboxing
    default Long
     
    long
    Type Specific getKey method that reduces boxing/unboxing
    default Float
     
    float
    setValue(float value)
    Type Specific setValue method that reduces boxing/unboxing
    default Float
    setValue(Float value)
     

    Von Schnittstelle geerbte Methoden java.util.Map.Entry

    equals, hashCode
  • Methodendetails

    • getLongKey

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

      default Long getKey()
      Angegeben von:
      getKey in Schnittstelle Map.Entry<Long,Float>
    • getFloatValue

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

      float setValue(float 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 Float getValue()
      Angegeben von:
      getValue in Schnittstelle Map.Entry<Long,Float>
    • setValue

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