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