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

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

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

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

See Also:
Map.Entry

Method Summary
 byte getByteValue()
           
 double getDoubleKey()
           
 byte setValue(byte 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

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

getByteValue

byte getByteValue()
See Also:
Map.Entry.getValue()