public static interface Int2BooleanMap.Entry extends Map.Entry<Integer,Boolean>
Map.Entry; provides some additional methods
that use polymorphism to avoid (un)boxing.Map.Entryint getIntKey()
Map.Entry.getKey()boolean setValue(boolean value)
Map.Entry.setValue(Object)boolean getBooleanValue()
Map.Entry.getValue()