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

All Superinterfaces:
Map.Entry<K,Integer>
All Known Implementing Classes:
AbstractObject2IntMap.BasicEntry
Enclosing interface:
Object2IntMap<K>

public static interface Object2IntMap.Entry<K>
extends Map.Entry<K,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()
           
 int setValue(int value)
           
 
Methods inherited from interface java.util.Map.Entry
equals, getKey, getValue, hashCode, setValue
 

Method Detail

setValue

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

getIntValue

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