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

All Superinterfaces:
Map.Entry
All Known Implementing Classes:
AbstractByte2ByteMap.BasicEntry
Enclosing interface:
Byte2ByteMap

public static interface Byte2ByteMap.Entry
extends Map.Entry

A type-specific Map.Entry; provides some additional methods to access its content reducing type juggling.

See Also:
Map.Entry

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

Method Detail

getByteKey

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

setValue

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

getByteValue

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