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

All Superinterfaces:
java.util.Map.Entry<java.lang.Character,java.lang.Boolean>
All Known Implementing Classes:
AbstractChar2BooleanMap.BasicEntry
Enclosing interface:
Char2BooleanMap

public static interface Char2BooleanMap.Entry
extends java.util.Map.Entry<java.lang.Character,java.lang.Boolean>

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

See Also:
Map.Entry

Method Summary
 boolean getBooleanValue()
           
 char getCharKey()
           
 boolean setValue(boolean 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

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

getBooleanValue

boolean getBooleanValue()
See Also:
Map.Entry.getValue()