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

All Superinterfaces:
java.util.Map.Entry<K,java.lang.Long>
All Known Implementing Classes:
AbstractObject2LongMap.BasicEntry
Enclosing interface:
Object2LongMap<K>

public static interface Object2LongMap.Entry<K>
extends java.util.Map.Entry<K,java.lang.Long>

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

See Also:
Map.Entry

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

Method Detail

setValue

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

getLongValue

long getLongValue()
See Also:
Map.Entry.getValue()