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

All Superinterfaces:
java.util.Map.Entry<java.lang.Long,java.lang.Integer>
All Known Implementing Classes:
AbstractLong2IntMap.BasicEntry
Enclosing interface:
Long2IntMap

public static interface Long2IntMap.Entry
extends java.util.Map.Entry<java.lang.Long,java.lang.Integer>

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

See Also:
Map.Entry

Method Summary
 int getIntValue()
           
 long getLongKey()
           
 int setValue(int 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

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

getIntValue

int getIntValue()
See Also:
Map.Entry.getValue()