public static interface Int2BooleanMap.Entry
extends java.util.Map.Entry<java.lang.Integer,java.lang.Boolean>
| Modifier and Type | Method and Description |
|---|---|
boolean |
getBooleanValue()
Type Specific getValue method that reduces boxing/unboxing
|
int |
getIntKey()
Type Specific getKey method that reduces boxing/unboxing
|
default java.lang.Integer |
getKey() |
default java.lang.Boolean |
getValue() |
boolean |
setValue(boolean value)
Type Specific setValue method that reduces boxing/unboxing
|
default java.lang.Boolean |
setValue(java.lang.Boolean value) |
int getIntKey()
default java.lang.Integer getKey()
getKey in interface java.util.Map.Entry<java.lang.Integer,java.lang.Boolean>boolean getBooleanValue()
boolean setValue(boolean value)
value - the new Value that should be placed in the given entryjava.lang.UnsupportedOperationException - if the Entry is immutable or not supporteddefault java.lang.Boolean getValue()
getValue in interface java.util.Map.Entry<java.lang.Integer,java.lang.Boolean>default java.lang.Boolean setValue(java.lang.Boolean value)
setValue in interface java.util.Map.Entry<java.lang.Integer,java.lang.Boolean>