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