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

All Superinterfaces:
Map.Entry<Byte,Float>
All Known Implementing Classes:
AbstractByte2FloatMap.BasicEntry
Enclosing interface:
Byte2FloatMap

public static interface Byte2FloatMap.Entry
extends Map.Entry<Byte,Float>

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

See Also:
Map.Entry

Method Summary
 byte getByteKey()
           
 float getFloatValue()
           
 float setValue(float 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

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

getFloatValue

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