Class AbstractLong2ReferenceSortedMap<V>
- All Implemented Interfaces:
Function<Long,
,V> Long2ReferenceFunction<V>
,Long2ReferenceMap<V>
,Long2ReferenceSortedMap<V>
,Serializable
,Function<Long,
,V> LongFunction<V>
,Map<Long,
,V> SequencedMap<Long,
,V> SortedMap<Long,
V>
- Direct Known Subclasses:
Long2ReferenceAVLTreeMap
,Long2ReferenceLinkedOpenHashMap
,Long2ReferenceRBTreeMap
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.longs.AbstractLong2ReferenceMap
AbstractLong2ReferenceMap.BasicEntry<V>, AbstractLong2ReferenceMap.BasicEntrySet<V>
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.longs.Long2ReferenceMap
Long2ReferenceMap.Entry<V>, Long2ReferenceMap.FastEntrySet<V>
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.longs.Long2ReferenceSortedMap
Long2ReferenceSortedMap.FastSortedEntrySet<V>
-
Method Summary
Methods inherited from class it.unimi.dsi.fastutil.longs.AbstractLong2ReferenceMap
containsKey, containsValue, equals, hashCode, isEmpty, putAll, toString
Methods inherited from class it.unimi.dsi.fastutil.longs.AbstractLong2ReferenceFunction
defaultReturnValue, defaultReturnValue
Methods inherited from interface it.unimi.dsi.fastutil.longs.Long2ReferenceFunction
andThenByte, andThenChar, andThenDouble, andThenFloat, andThenInt, andThenLong, andThenObject, andThenReference, andThenShort, apply, compose, composeByte, composeChar, composeDouble, composeFloat, composeInt, composeLong, composeObject, composeReference, composeShort, get, put, remove
Methods inherited from interface it.unimi.dsi.fastutil.longs.Long2ReferenceMap
clear, compute, computeIfAbsent, computeIfAbsent, computeIfAbsentPartial, computeIfPresent, containsKey, containsKey, defaultReturnValue, defaultReturnValue, forEach, get, getOrDefault, getOrDefault, merge, put, putIfAbsent, remove, remove, replace, replace, size
Methods inherited from interface it.unimi.dsi.fastutil.longs.Long2ReferenceSortedMap
comparator, entrySet, firstKey, firstLongKey, headMap, headMap, lastKey, lastLongKey, long2ReferenceEntrySet, subMap, subMap, tailMap, tailMap
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, get, getOrDefault, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size
Methods inherited from interface java.util.SequencedMap
firstEntry, lastEntry, pollFirstEntry, pollLastEntry, sequencedEntrySet, sequencedKeySet, sequencedValues
-
Method Details
-
keySet
Returns a type-specific-set view of the keys of this map.The view is backed by the set returned by
Map.entrySet()
. Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.The view is backed by the sorted set returned by
Map.entrySet()
. Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.- Specified by:
keySet
in interfaceLong2ReferenceMap<V>
- Specified by:
keySet
in interfaceLong2ReferenceSortedMap<V>
- Specified by:
keySet
in interfaceMap<Long,
V> - Specified by:
keySet
in interfaceSortedMap<Long,
V> - Overrides:
keySet
in classAbstractLong2ReferenceMap<V>
- Returns:
- a sorted set view of the keys of this map; it may be safely cast to a type-specific interface.
- See Also:
-
values
Returns a type-specific-set view of the values of this map.The view is backed by the set returned by
Map.entrySet()
. Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.The view is backed by the sorted set returned by
Map.entrySet()
. Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.- Specified by:
values
in interfaceLong2ReferenceMap<V>
- Specified by:
values
in interfaceLong2ReferenceSortedMap<V>
- Specified by:
values
in interfaceMap<Long,
V> - Specified by:
values
in interfaceSortedMap<Long,
V> - Overrides:
values
in classAbstractLong2ReferenceMap<V>
- Returns:
- a type-specific collection view of the values contained in this map.
- See Also:
-