it.unimi.dsi.fastutil.chars
Interface Char2ShortSortedMap
- All Superinterfaces:
- Char2ShortMap, Map, SortedMap
- All Known Implementing Classes:
- AbstractChar2ShortSortedMap, Char2ShortAVLTreeMap, Char2ShortLinkedOpenHashMap, Char2ShortRBTreeMap, Char2ShortSortedMaps.EmptySortedMap, Char2ShortSortedMaps.Singleton, Char2ShortSortedMaps.SynchronizedSortedMap
- public interface Char2ShortSortedMap
- extends Char2ShortMap, 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 Char2ShortSortedMap subMap(char fromKey,
char toKey)
- See Also:
SortedMap.subMap(Object,Object)
headMap
public Char2ShortSortedMap headMap(char toKey)
- See Also:
SortedMap.headMap(Object)
tailMap
public Char2ShortSortedMap tailMap(char fromKey)
- See Also:
SortedMap.tailMap(Object)
firstCharKey
public char firstCharKey()
- See Also:
SortedMap.firstKey()
lastCharKey
public char lastCharKey()
- See Also:
SortedMap.lastKey()