it.unimi.dsi.fastutil.bytes
Interface Byte2IntSortedMap
- All Superinterfaces:
- Byte2IntMap, Map, SortedMap
- All Known Implementing Classes:
- AbstractByte2IntSortedMap, Byte2IntAVLTreeMap, Byte2IntLinkedOpenHashMap, Byte2IntRBTreeMap, Byte2IntSortedMaps.EmptySortedMap, Byte2IntSortedMaps.Singleton, Byte2IntSortedMaps.SynchronizedSortedMap, Byte2IntSortedMaps.UnmodifiableSortedMap
- public interface Byte2IntSortedMap
- extends Byte2IntMap, 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 Byte2IntSortedMap subMap(byte fromKey,
byte toKey)
- See Also:
SortedMap.subMap(Object,Object)
headMap
public Byte2IntSortedMap headMap(byte toKey)
- See Also:
SortedMap.headMap(Object)
tailMap
public Byte2IntSortedMap tailMap(byte fromKey)
- See Also:
SortedMap.tailMap(Object)
firstByteKey
public byte firstByteKey()
- See Also:
SortedMap.firstKey()
lastByteKey
public byte lastByteKey()
- See Also:
SortedMap.lastKey()