public static interface Char2BooleanMap.Entry extends Map.Entry<Character,Boolean>
Map.Entry
; provides some additional methods
that use polymorphism to avoid (un)boxing.Map.Entry
Modifier and Type | Method and Description |
---|---|
boolean |
getBooleanValue() |
char |
getCharKey() |
boolean |
setValue(boolean value) |
char getCharKey()
Map.Entry.getKey()
boolean setValue(boolean value)
Map.Entry.setValue(Object)
boolean getBooleanValue()
Map.Entry.getValue()