Schnittstelle Object2CharMap.Entry<T>

Typparameter:
T - the keyType of elements maintained by this Collection
Alle Superschnittstellen:
Map.Entry<T,Character>
Alle bekannten Implementierungsklassen:
AbstractObject2CharMap.BasicEntry, Object2CharMaps.UnmodifyableEntry
Umschließende Schnittstelle:
Object2CharMap<T>

public static interface Object2CharMap.Entry<T> extends Map.Entry<T,Character>
Type Specific Map Entry that reduces boxing/unboxing
  • Methodendetails

    • getCharValue

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

      char setValue(char 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 Character getValue()
      Angegeben von:
      getValue in Schnittstelle Map.Entry<T,Character>
    • setValue

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