it.unimi.dsi.fastutil.shorts
Interface Short2CharMap.Entry

All Superinterfaces:
Map.Entry<Short,Character>
All Known Implementing Classes:
AbstractShort2CharMap.BasicEntry
Enclosing interface:
Short2CharMap

public static interface Short2CharMap.Entry
extends Map.Entry<Short,Character>

A type-specific Map.Entry; provides some additional methods that use polymorphism to avoid (un)boxing.

See Also:
Map.Entry

Method Summary
 char getCharValue()
           
 short getShortKey()
           
 char setValue(char value)
           
 
Methods inherited from interface java.util.Map.Entry
equals, getKey, getValue, hashCode, setValue
 

Method Detail

getShortKey

short getShortKey()
See Also:
Map.Entry.getKey()

setValue

char setValue(char value)
See Also:
Map.Entry.setValue(Object)

getCharValue

char getCharValue()
See Also:
Map.Entry.getValue()