Interface Char2ShortMap.Entry

All Superinterfaces:
Map.Entry<Character,​Short>
All Known Implementing Classes:
AbstractChar2ShortMap.BasicEntry
Enclosing interface:
Char2ShortMap

public static interface Char2ShortMap.Entry
extends Map.Entry<Character,​Short>
A type-specific Map.Entry; provides some additional methods that use polymorphism to avoid (un)boxing.
See Also:
Map.Entry
  • Method Summary

    Modifier and Type Method Description
    char getCharKey()
    Returns the key corresponding to this entry.
    default Character getKey()
    Deprecated.
    Please use the corresponding type-specific method instead.
    short getShortValue()
    Returns the value corresponding to this entry.
    default Short getValue()
    Deprecated.
    Please use the corresponding type-specific method instead.
    short setValue​(short value)
    Replaces the value corresponding to this entry with the specified value (optional operation).
    default Short setValue​(Short value)
    Deprecated.
    Please use the corresponding type-specific method instead.

    Methods inherited from interface java.util.Map.Entry

    equals, hashCode