Class AbstractDouble2ReferenceSortedMap<V>
- All Implemented Interfaces:
Double2ReferenceFunction<V>
,Double2ReferenceMap<V>
,Double2ReferenceSortedMap<V>
,Function<Double,
,V> Serializable
,DoubleFunction<V>
,Function<Double,
,V> Map<Double,
,V> SequencedMap<Double,
,V> SortedMap<Double,
V>
- Direct Known Subclasses:
Double2ReferenceAVLTreeMap
,Double2ReferenceLinkedOpenHashMap
,Double2ReferenceRBTreeMap
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.doubles.AbstractDouble2ReferenceMap
AbstractDouble2ReferenceMap.BasicEntry<V>, AbstractDouble2ReferenceMap.BasicEntrySet<V>
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.doubles.Double2ReferenceMap
Double2ReferenceMap.Entry<V>, Double2ReferenceMap.FastEntrySet<V>
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.doubles.Double2ReferenceSortedMap
Double2ReferenceSortedMap.FastSortedEntrySet<V>
-
Method Summary
Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDouble2ReferenceMap
containsKey, containsValue, equals, hashCode, isEmpty, putAll, toString
Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDouble2ReferenceFunction
defaultReturnValue, defaultReturnValue
Methods inherited from interface it.unimi.dsi.fastutil.doubles.Double2ReferenceFunction
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.doubles.Double2ReferenceMap
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.doubles.Double2ReferenceSortedMap
comparator, double2ReferenceEntrySet, entrySet, firstDoubleKey, firstKey, headMap, headMap, lastDoubleKey, lastKey, 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 interfaceDouble2ReferenceMap<V>
- Specified by:
keySet
in interfaceDouble2ReferenceSortedMap<V>
- Specified by:
keySet
in interfaceMap<Double,
V> - Specified by:
keySet
in interfaceSortedMap<Double,
V> - Overrides:
keySet
in classAbstractDouble2ReferenceMap<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 interfaceDouble2ReferenceMap<V>
- Specified by:
values
in interfaceDouble2ReferenceSortedMap<V>
- Specified by:
values
in interfaceMap<Double,
V> - Specified by:
values
in interfaceSortedMap<Double,
V> - Overrides:
values
in classAbstractDouble2ReferenceMap<V>
- Returns:
- a type-specific collection view of the values contained in this map.
- See Also:
-