it.unimi.dsi.fastutil.ints
Interface Int2ByteMap.Entry

All Superinterfaces:
Map.Entry<Integer,Byte>
All Known Implementing Classes:
AbstractInt2ByteMap.BasicEntry
Enclosing interface:
Int2ByteMap

public static interface Int2ByteMap.Entry
extends Map.Entry<Integer,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()
           
 int getIntKey()
           
 byte setValue(byte value)
           
 
Methods inherited from interface java.util.Map.Entry
equals, getKey, getValue, hashCode, setValue
 

Method Detail

getIntKey

int getIntKey()
See Also:
Map.Entry.getKey()

setValue

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

getByteValue

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