it.unimi.dsi.fastutil.longs
Interface Long2ReferenceSortedMap
- All Superinterfaces:
- Long2ReferenceMap, Map, SortedMap
- All Known Implementing Classes:
- Long2ReferenceAVLTreeMap, Long2ReferenceLinkedOpenHashMap, Long2ReferenceRBTreeMap
- public interface Long2ReferenceSortedMap
- extends Long2ReferenceMap, 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 Long2ReferenceSortedMap subMap(long fromKey,
long toKey)
- See Also:
SortedMap.subMap(Object,Object)
headMap
public Long2ReferenceSortedMap headMap(long toKey)
- See Also:
SortedMap.headMap(Object)
tailMap
public Long2ReferenceSortedMap tailMap(long fromKey)
- See Also:
SortedMap.tailMap(Object)
firstLongKey
public long firstLongKey()
- See Also:
SortedMap.firstKey()
lastLongKey
public long lastLongKey()
- See Also:
SortedMap.lastKey()