it.unimi.dsi.fastutil.doubles
Interface Double2FloatMap.Entry

All Superinterfaces:
Map.Entry<Double,Float>
All Known Implementing Classes:
AbstractDouble2FloatMap.BasicEntry
Enclosing interface:
Double2FloatMap

public static interface Double2FloatMap.Entry
extends Map.Entry<Double,Float>

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

See Also:
Map.Entry

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

Method Detail

getDoubleKey

double getDoubleKey()
See Also:
Map.Entry.getKey()

setValue

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

getFloatValue

float getFloatValue()
See Also:
Map.Entry.getValue()