Interface Byte2ObjectSortedMap<V>

All Superinterfaces:
Byte2ObjectFunction<V>, Byte2ObjectMap<V>, Function<Byte,V>, Function<Byte,V>, IntFunction<V>, Map<Byte,V>, SortedMap<Byte,V>
All Known Implementing Classes:
AbstractByte2ObjectSortedMap, Byte2ObjectAVLTreeMap, Byte2ObjectLinkedOpenHashMap, Byte2ObjectRBTreeMap, Byte2ObjectSortedMaps.EmptySortedMap, Byte2ObjectSortedMaps.Singleton, Byte2ObjectSortedMaps.SynchronizedSortedMap, Byte2ObjectSortedMaps.UnmodifiableSortedMap

public interface Byte2ObjectSortedMap<V> extends Byte2ObjectMap<V>, SortedMap<Byte,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: