public static interface Double2BooleanMap.Entry
extends java.util.Map.Entry<java.lang.Double,java.lang.Boolean>
| Modifier and Type | Method and Description |
|---|---|
boolean |
getBooleanValue()
Type Specific getValue method that reduces boxing/unboxing
|
double |
getDoubleKey()
Type Specific getKey method that reduces boxing/unboxing
|
default java.lang.Double |
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) |
double getDoubleKey()
default java.lang.Double getKey()
getKey in interface java.util.Map.Entry<java.lang.Double,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.Double,java.lang.Boolean>default java.lang.Boolean setValue(java.lang.Boolean value)
setValue in interface java.util.Map.Entry<java.lang.Double,java.lang.Boolean>