public static interface Int2BooleanMap.Entry
extends java.util.Map.Entry<java.lang.Integer,java.lang.Boolean>
Map.Entry; provides some additional
methods that use polymorphism to avoid (un)boxing.Map.Entry| Modifier and Type | Method and Description |
|---|---|
boolean |
getBooleanValue() |
int |
getIntKey() |
java.lang.Integer |
getKey()
Deprecated.
Please use the corresponding type-specific method
instead.
|
java.lang.Boolean |
getValue()
Deprecated.
Please use the corresponding type-specific method
instead.
|
boolean |
setValue(boolean value) |
@Deprecated java.lang.Integer getKey()
getKey in interface java.util.Map.Entry<java.lang.Integer,java.lang.Boolean>int getIntKey()
Map.Entry.getKey()@Deprecated java.lang.Boolean getValue()
getValue in interface java.util.Map.Entry<java.lang.Integer,java.lang.Boolean>boolean setValue(boolean value)
Map.Entry.setValue(Object)boolean getBooleanValue()
Map.Entry.getValue()