it.unimi.dsi.fastutil.ints
Interface Int2IntMap.Entry

All Superinterfaces:
Map.Entry<Integer,Integer>
All Known Implementing Classes:
AbstractInt2IntMap.BasicEntry
Enclosing interface:
Int2IntMap

public static interface Int2IntMap.Entry
extends Map.Entry<Integer,Integer>

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

See Also:
Map.Entry

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

Method Detail

getIntKey

int getIntKey()
See Also:
Map.Entry.getKey()

setValue

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

getIntValue

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