it.unimi.dsi.fastutil.chars
Interface Char2ShortMap.Entry

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

public static interface Char2ShortMap.Entry
extends java.util.Map.Entry<java.lang.Character,java.lang.Short>

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

See Also:
Map.Entry

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

Method Detail

getCharKey

char getCharKey()
See Also:
Map.Entry.getKey()

setValue

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

getShortValue

short getShortValue()
See Also:
Map.Entry.getValue()