it.unimi.dsi.fastutil.bytes
Interface Byte2DoubleMap.Entry

All Superinterfaces:
Map.Entry<Byte,Double>
All Known Implementing Classes:
AbstractByte2DoubleMap.BasicEntry
Enclosing interface:
Byte2DoubleMap

public static interface Byte2DoubleMap.Entry
extends Map.Entry<Byte,Double>

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

See Also:
Map.Entry

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

Method Detail

getByteKey

byte getByteKey()
See Also:
Map.Entry.getKey()

setValue

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

getDoubleValue

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