it.unimi.dsi.fastutil.shorts
Interface Short2IntSortedMap
- All Superinterfaces:
- Map, Short2IntMap, SortedMap
- All Known Implementing Classes:
- Short2IntAVLTreeMap, Short2IntLinkedOpenHashMap, Short2IntRBTreeMap
- public interface Short2IntSortedMap
- extends Short2IntMap, 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 Short2IntSortedMap subMap(short fromKey,
short toKey)
- See Also:
SortedMap.subMap(Object,Object)
headMap
public Short2IntSortedMap headMap(short toKey)
- See Also:
SortedMap.headMap(Object)
tailMap
public Short2IntSortedMap tailMap(short fromKey)
- See Also:
SortedMap.tailMap(Object)
firstShortKey
public short firstShortKey()
- See Also:
SortedMap.firstKey()
lastShortKey
public short lastShortKey()
- See Also:
SortedMap.lastKey()