public static interface Float2BooleanMap.Entry
extends java.util.Map.Entry<java.lang.Float,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()
Returns the value corresponding to this entry.
|
float |
getFloatKey()
Returns the key corresponding to this entry.
|
default java.lang.Float |
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.
|
float getFloatKey()
Map.Entry.getKey()
@Deprecated default java.lang.Float getKey()
getKey
in interface java.util.Map.Entry<java.lang.Float,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.Float,java.lang.Boolean>
@Deprecated default java.lang.Boolean setValue(java.lang.Boolean value)
setValue
in interface java.util.Map.Entry<java.lang.Float,java.lang.Boolean>