it.unimi.dsi.fastutil.objects
Interface Object2ShortMap.Entry<K>

All Superinterfaces:
Map.Entry<K,Short>
All Known Implementing Classes:
AbstractObject2ShortMap.BasicEntry
Enclosing interface:
Object2ShortMap<K>

public static interface Object2ShortMap.Entry<K>
extends Map.Entry<K,Short>

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

See Also:
Map.Entry

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

Method Detail

setValue

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

getShortValue

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