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