it.unimi.dsi.fastutil.bytes
Interface Byte2CharSortedMap
- All Superinterfaces:
- Byte2CharMap, Map, SortedMap
- All Known Implementing Classes:
- AbstractByte2CharSortedMap, Byte2CharAVLTreeMap, Byte2CharLinkedOpenHashMap, Byte2CharRBTreeMap, Byte2CharSortedMaps.EmptySortedMap, Byte2CharSortedMaps.Singleton, Byte2CharSortedMaps.SynchronizedSortedMap
- public interface Byte2CharSortedMap
- extends Byte2CharMap, 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 Byte2CharSortedMap subMap(byte fromKey,
byte toKey)
- See Also:
SortedMap.subMap(Object,Object)
headMap
public Byte2CharSortedMap headMap(byte toKey)
- See Also:
SortedMap.headMap(Object)
tailMap
public Byte2CharSortedMap tailMap(byte fromKey)
- See Also:
SortedMap.tailMap(Object)
firstByteKey
public byte firstByteKey()
- See Also:
SortedMap.firstKey()
lastByteKey
public byte lastByteKey()
- See Also:
SortedMap.lastKey()