Interface Int2IntSortedMap

All Superinterfaces:
Function<Integer,Integer>, Function<Integer,Integer>, Int2IntFunction, Int2IntMap, IntUnaryOperator, Map<Integer,Integer>, SortedMap<Integer,Integer>
All Known Implementing Classes:
AbstractInt2IntSortedMap, Int2IntAVLTreeMap, Int2IntLinkedOpenHashMap, Int2IntRBTreeMap, Int2IntSortedMaps.EmptySortedMap, Int2IntSortedMaps.Singleton, Int2IntSortedMaps.SynchronizedSortedMap, Int2IntSortedMaps.UnmodifiableSortedMap

public interface Int2IntSortedMap extends Int2IntMap, SortedMap<Integer,Integer>
A type-specific SortedMap; provides some additional methods that use polymorphism to avoid (un)boxing.

Additionally, this interface strengthens entrySet(), keySet(), values(), comparator(), SortedMap.subMap(Object,Object), SortedMap.headMap(Object) and SortedMap.tailMap(Object).

See Also: