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

All Superinterfaces:
Map.Entry
Enclosing interface:
Char2BooleanMap

public static interface Char2BooleanMap.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
 boolean getBooleanValue()
           
 char getCharKey()
           
 boolean setValue(boolean value)
           
 
Methods inherited from interface java.util.Map.Entry
equals, getKey, getValue, hashCode, setValue
 

Method Detail

getCharKey

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

setValue

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

getBooleanValue

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