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

All Superinterfaces:
java.util.Map.Entry<K,java.lang.Double>
All Known Implementing Classes:
AbstractReference2DoubleMap.BasicEntry
Enclosing interface:
Reference2DoubleMap<K>

public static interface Reference2DoubleMap.Entry<K>
extends java.util.Map.Entry<K,java.lang.Double>

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

See Also:
Map.Entry

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

Method Detail

setValue

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

getDoubleValue

double getDoubleValue()
See Also:
Map.Entry.getValue()