Interface Long2ObjectSortedMap<V>

All Superinterfaces:
Function<Long,​V>, Function<Long,​V>, Long2ObjectFunction<V>, Long2ObjectMap<V>, LongFunction<V>, Map<Long,​V>, SortedMap<Long,​V>
All Known Implementing Classes:
AbstractLong2ObjectSortedMap, Long2ObjectAVLTreeMap, Long2ObjectLinkedOpenHashMap, Long2ObjectRBTreeMap, Long2ObjectSortedMaps.EmptySortedMap, Long2ObjectSortedMaps.Singleton, Long2ObjectSortedMaps.SynchronizedSortedMap, Long2ObjectSortedMaps.UnmodifiableSortedMap

public interface Long2ObjectSortedMap<V>
extends Long2ObjectMap<V>, SortedMap<Long,​V>
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:
SortedMap