public static interface Int2LongMap.Entry extends Map.Entry<Integer,Long>
Map.Entry
; provides some additional methods
that use polymorphism to avoid (un)boxing.Map.Entry
int getIntKey()
Map.Entry.getKey()
long setValue(long value)
Map.Entry.setValue(Object)
long getLongValue()
Map.Entry.getValue()