it.unimi.dsi.fastutil.ints
Interface Int2CharSortedMap
- All Superinterfaces:
- Int2CharMap, Map, SortedMap
- All Known Implementing Classes:
- AbstractInt2CharSortedMap, Int2CharAVLTreeMap, Int2CharLinkedOpenHashMap, Int2CharRBTreeMap, Int2CharSortedMaps.EmptySortedMap, Int2CharSortedMaps.Singleton, Int2CharSortedMaps.SynchronizedSortedMap
- public interface Int2CharSortedMap
- extends Int2CharMap, 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 Int2CharSortedMap subMap(int fromKey,
int toKey)
- See Also:
SortedMap.subMap(Object,Object)
headMap
public Int2CharSortedMap headMap(int toKey)
- See Also:
SortedMap.headMap(Object)
tailMap
public Int2CharSortedMap tailMap(int fromKey)
- See Also:
SortedMap.tailMap(Object)
firstIntKey
public int firstIntKey()
- See Also:
SortedMap.firstKey()
lastIntKey
public int lastIntKey()
- See Also:
SortedMap.lastKey()