it.unimi.dsi.fastutil.longs
Interface Long2ShortMap.Entry

All Superinterfaces:
Map.Entry<Long,Short>
All Known Implementing Classes:
AbstractLong2ShortMap.BasicEntry
Enclosing interface:
Long2ShortMap

public static interface Long2ShortMap.Entry
extends Map.Entry<Long,Short>

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

See Also:
Map.Entry

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

Method Detail

getLongKey

long getLongKey()
See Also:
Map.Entry.getKey()

setValue

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

getShortValue

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