public static interface Float2IntMap.Entry
extends java.util.Map.Entry<java.lang.Float,java.lang.Integer>
| Modifier and Type | Method and Description |
|---|---|
float |
getFloatKey()
Type Specific getKey method that reduces boxing/unboxing
|
int |
getIntValue()
Type Specific getValue method that reduces boxing/unboxing
|
default java.lang.Float |
getKey() |
default java.lang.Integer |
getValue() |
int |
setValue(int value)
Type Specific setValue method that reduces boxing/unboxing
|
default java.lang.Integer |
setValue(java.lang.Integer value) |
float getFloatKey()
default java.lang.Float getKey()
getKey in interface java.util.Map.Entry<java.lang.Float,java.lang.Integer>int getIntValue()
int setValue(int 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.Integer getValue()
getValue in interface java.util.Map.Entry<java.lang.Float,java.lang.Integer>default java.lang.Integer setValue(java.lang.Integer value)
setValue in interface java.util.Map.Entry<java.lang.Float,java.lang.Integer>