it.unimi.dsi.fastutil.longs
Interface Long2ObjectSortedMap
- All Superinterfaces:
- Long2ObjectMap, Map, SortedMap
- All Known Implementing Classes:
- AbstractLong2ObjectSortedMap, Long2ObjectAVLTreeMap, Long2ObjectLinkedOpenHashMap, Long2ObjectRBTreeMap, Long2ObjectSortedMaps.EmptySortedMap, Long2ObjectSortedMaps.Singleton, Long2ObjectSortedMaps.SynchronizedSortedMap, Long2ObjectSortedMaps.UnmodifiableSortedMap
- public interface Long2ObjectSortedMap
- extends Long2ObjectMap, 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 Long2ObjectSortedMap subMap(long fromKey,
long toKey)
- See Also:
SortedMap.subMap(Object,Object)
headMap
public Long2ObjectSortedMap headMap(long toKey)
- See Also:
SortedMap.headMap(Object)
tailMap
public Long2ObjectSortedMap tailMap(long fromKey)
- See Also:
SortedMap.tailMap(Object)
firstLongKey
public long firstLongKey()
- See Also:
SortedMap.firstKey()
lastLongKey
public long lastLongKey()
- See Also:
SortedMap.lastKey()