java.util.Map.Entry<java.lang.Integer,java.lang.Boolean>AbstractInt2BooleanMap.BasicEntrypublic 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 | Description |
|---|---|---|
boolean |
getBooleanValue() |
Returns the value corresponding to this entry.
|
int |
getIntKey() |
Returns the key corresponding to this entry.
|
default java.lang.Integer |
getKey() |
Deprecated.
Please use the corresponding type-specific method instead.
|
default java.lang.Boolean |
getValue() |
Deprecated.
Please use the corresponding type-specific method instead.
|
boolean |
setValue(boolean value) |
Replaces the value corresponding to this entry with the specified value
(optional operation).
|
default java.lang.Boolean |
setValue(java.lang.Boolean value) |
Deprecated.
Please use the corresponding type-specific method instead.
|
int getIntKey()
Map.Entry.getKey()@Deprecated default java.lang.Integer getKey()
getKey in interface java.util.Map.Entry<java.lang.Integer,java.lang.Boolean>boolean getBooleanValue()
Map.Entry.getValue()boolean setValue(boolean value)
Map.Entry.setValue(Object)@Deprecated default java.lang.Boolean getValue()
getValue in interface java.util.Map.Entry<java.lang.Integer,java.lang.Boolean>@Deprecated default java.lang.Boolean setValue(java.lang.Boolean value)
setValue in interface java.util.Map.Entry<java.lang.Integer,java.lang.Boolean>