Schnittstelle Double2BooleanMap.Entry

Alle Superschnittstellen:
Map.Entry<Double,Boolean>
Alle bekannten Implementierungsklassen:
AbstractDouble2BooleanMap.BasicEntry, Double2BooleanMaps.UnmodifyableEntry
Umschließende Schnittstelle:
Double2BooleanMap

public static interface Double2BooleanMap.Entry extends Map.Entry<Double,Boolean>
Type Specific Map Entry that reduces boxing/unboxing
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    boolean
    Type Specific getValue method that reduces boxing/unboxing
    double
    Type Specific getKey method that reduces boxing/unboxing
    default Double
     
    default Boolean
     
    boolean
    setValue(boolean value)
    Type Specific setValue method that reduces boxing/unboxing
    default Boolean
     

    Von Schnittstelle geerbte Methoden java.util.Map.Entry

    equals, hashCode
  • Methodendetails

    • getDoubleKey

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

      default Double getKey()
      Angegeben von:
      getKey in Schnittstelle Map.Entry<Double,Boolean>
    • getBooleanValue

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

      boolean setValue(boolean 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 Boolean getValue()
      Angegeben von:
      getValue in Schnittstelle Map.Entry<Double,Boolean>
    • setValue

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