Interface CharObjectMap.PrimitiveEntry<V>

Type Parameters:
V - the value type stored in the map.
All Known Implementing Classes:
CharCollections.UnmodifiableMap.EntryImpl, CharObjectHashMap.PrimitiveIterator
Enclosing interface:
CharObjectMap<V>

public static interface CharObjectMap.PrimitiveEntry<V>
A primitive entry in the map, provided by the iterator from CharObjectMap.entries()
  • Method Summary

    Modifier and Type
    Method
    Description
    char
    key()
    Gets the key for this entry.
    void
    setValue(V value)
    Sets the value for this entry.
    Gets the value for this entry.
  • Method Details

    • key

      char key()
      Gets the key for this entry.
    • value

      V value()
      Gets the value for this entry.
    • setValue

      void setValue(V value)
      Sets the value for this entry.