Interface Double2ObjectSortedMap<V>

All Superinterfaces:
Double2ObjectFunction<V>, Double2ObjectMap<V>, DoubleFunction<V>, Function<Double,V>, Function<Double,V>, Map<Double,V>, SortedMap<Double,V>
All Known Implementing Classes:
AbstractDouble2ObjectSortedMap, Double2ObjectAVLTreeMap, Double2ObjectLinkedOpenHashMap, Double2ObjectRBTreeMap, Double2ObjectSortedMaps.EmptySortedMap, Double2ObjectSortedMaps.Singleton, Double2ObjectSortedMaps.SynchronizedSortedMap, Double2ObjectSortedMaps.UnmodifiableSortedMap

public interface Double2ObjectSortedMap<V> extends Double2ObjectMap<V>, SortedMap<Double,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: