it.unimi.dsi.fastutil.chars
Interface Char2ByteMap.Entry

All Superinterfaces:
java.util.Map.Entry<java.lang.Character,java.lang.Byte>
All Known Implementing Classes:
AbstractChar2ByteMap.BasicEntry
Enclosing interface:
Char2ByteMap

public static interface Char2ByteMap.Entry
extends java.util.Map.Entry<java.lang.Character,java.lang.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()
           
 char getCharKey()
           
 byte setValue(byte value)
           
 
Methods inherited from interface java.util.Map.Entry
equals, getKey, getValue, hashCode, setValue
 

Method Detail

getCharKey

char getCharKey()
See Also:
Map.Entry.getKey()

setValue

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

getByteValue

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