Interface Char2IntSortedMap

All Superinterfaces:
Char2IntFunction, Char2IntMap, Function<Character,Integer>, Function<Character,Integer>, IntUnaryOperator, Map<Character,Integer>, SortedMap<Character,Integer>
All Known Implementing Classes:
AbstractChar2IntSortedMap, Char2IntAVLTreeMap, Char2IntLinkedOpenHashMap, Char2IntRBTreeMap, Char2IntSortedMaps.EmptySortedMap, Char2IntSortedMaps.Singleton, Char2IntSortedMaps.SynchronizedSortedMap, Char2IntSortedMaps.UnmodifiableSortedMap

public interface Char2IntSortedMap extends Char2IntMap, SortedMap<Character,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: