it.unimi.dsi.fastutil.bytes
Interface Byte2ShortSortedMap
- All Superinterfaces:
- Byte2ShortMap, Map, SortedMap
- All Known Implementing Classes:
- AbstractByte2ShortSortedMap, Byte2ShortAVLTreeMap, Byte2ShortLinkedOpenHashMap, Byte2ShortRBTreeMap, Byte2ShortSortedMaps.EmptySortedMap, Byte2ShortSortedMaps.Singleton, Byte2ShortSortedMaps.SynchronizedSortedMap, Byte2ShortSortedMaps.UnmodifiableSortedMap
- public interface Byte2ShortSortedMap
- extends Byte2ShortMap, SortedMap
A type-specific SortedMap
; provides some additional methods that use polymorphism to reduce type juggling.
- See Also:
SortedMap
Methods inherited from interface java.util.Map |
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values |
subMap
public Byte2ShortSortedMap subMap(byte fromKey,
byte toKey)
- See Also:
SortedMap.subMap(Object,Object)
headMap
public Byte2ShortSortedMap headMap(byte toKey)
- See Also:
SortedMap.headMap(Object)
tailMap
public Byte2ShortSortedMap tailMap(byte fromKey)
- See Also:
SortedMap.tailMap(Object)
firstByteKey
public byte firstByteKey()
- See Also:
SortedMap.firstKey()
lastByteKey
public byte lastByteKey()
- See Also:
SortedMap.lastKey()