Package it.unimi.dsi.fastutil.objects
Class Reference2DoubleSortedMaps.Singleton<K>
java.lang.Object
it.unimi.dsi.fastutil.objects.AbstractReference2DoubleFunction<K>
it.unimi.dsi.fastutil.objects.Reference2DoubleFunctions.Singleton<K>
it.unimi.dsi.fastutil.objects.Reference2DoubleMaps.Singleton<K>
it.unimi.dsi.fastutil.objects.Reference2DoubleSortedMaps.Singleton<K>
- All Implemented Interfaces:
Function<K,
,Double> Reference2DoubleFunction<K>
,Reference2DoubleMap<K>
,Reference2DoubleSortedMap<K>
,Serializable
,Cloneable
,Function<K,
,Double> ToDoubleFunction<K>
,Map<K,
,Double> SequencedMap<K,
,Double> SortedMap<K,
Double>
- Enclosing class:
Reference2DoubleSortedMaps
public static class Reference2DoubleSortedMaps.Singleton<K>
extends Reference2DoubleMaps.Singleton<K>
implements Reference2DoubleSortedMap<K>, Serializable, Cloneable
An immutable class representing a type-specific singleton sorted map.
This class may be useful to implement your own in case you subclass a type-specific sorted map.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.objects.Reference2DoubleMap
Reference2DoubleMap.Entry<K>, Reference2DoubleMap.FastEntrySet<K>
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.objects.Reference2DoubleSortedMap
Reference2DoubleSortedMap.FastSortedEntrySet<K>
-
Method Summary
Modifier and TypeMethodDescriptionComparator
<? super K> Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.entrySet()
Deprecated.Please use the corresponding type-specific method instead.firstKey()
Returns a view of the portion of this sorted map whose keys are strictly less thantoKey
.keySet()
lastKey()
Returns a type-specific set view of the mappings contained in this map.Returns a view of the portion of this sorted map whose keys range fromfromKey
, inclusive, totoKey
, exclusive.Returns a view of the portion of this sorted map whose keys are greater than or equal tofromKey
.Methods inherited from class it.unimi.dsi.fastutil.objects.Reference2DoubleMaps.Singleton
containsValue, containsValue, equals, hashCode, isEmpty, putAll, toString, values
Methods inherited from class it.unimi.dsi.fastutil.objects.Reference2DoubleFunctions.Singleton
clone, containsKey, getDouble, getOrDefault, size
Methods inherited from class it.unimi.dsi.fastutil.objects.AbstractReference2DoubleFunction
defaultReturnValue, defaultReturnValue
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, equals, get, getOrDefault, hashCode, isEmpty, put, putAll, remove, replaceAll, size
Methods inherited from interface it.unimi.dsi.fastutil.objects.Reference2DoubleFunction
andThen, andThenByte, andThenChar, andThenDouble, andThenFloat, andThenInt, andThenLong, andThenObject, andThenReference, andThenShort, applyAsDouble, composeByte, composeChar, composeDouble, composeFloat, composeInt, composeLong, composeObject, composeReference, composeShort, getDouble, put, removeDouble
Methods inherited from interface it.unimi.dsi.fastutil.objects.Reference2DoubleMap
clear, computeDouble, computeDoubleIfAbsent, computeDoubleIfAbsentPartial, computeDoubleIfPresent, computeIfAbsent, computeIfAbsent, containsKey, containsValue, containsValue, defaultReturnValue, defaultReturnValue, forEach, get, getOrDefault, getOrDefault, merge, merge, mergeDouble, mergeDouble, mergeDouble, put, putIfAbsent, putIfAbsent, remove, remove, remove, replace, replace, replace, replace, size
Methods inherited from interface it.unimi.dsi.fastutil.objects.Reference2DoubleSortedMap
values
Methods inherited from interface java.util.SequencedMap
firstEntry, lastEntry, pollFirstEntry, pollLastEntry, sequencedEntrySet, sequencedKeySet, sequencedValues
-
Method Details
-
comparator
Description copied from interface:Reference2DoubleSortedMap
Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.- Specified by:
comparator
in interfaceReference2DoubleSortedMap<K>
- Specified by:
comparator
in interfaceSortedMap<K,
Double> - See Also:
-
reference2DoubleEntrySet
Description copied from interface:Reference2DoubleMap
Returns a type-specific set view of the mappings contained in this map.This method is necessary because there is no inheritance along type parameters: it is thus impossible to strengthen
Map.entrySet()
so that it returns anObjectSet
of type-specific entries (the latter makes it possible to access keys and values with type-specific methods).- Specified by:
reference2DoubleEntrySet
in interfaceReference2DoubleMap<K>
- Specified by:
reference2DoubleEntrySet
in interfaceReference2DoubleSortedMap<K>
- Overrides:
reference2DoubleEntrySet
in classReference2DoubleMaps.Singleton<K>
- Returns:
- a type-specific set view of the mappings contained in this map.
- See Also:
-
entrySet
Deprecated.Please use the corresponding type-specific method instead.Returns a set view of the mappings contained in this map.- Specified by:
entrySet
in interfaceMap<K,
Double> - Specified by:
entrySet
in interfaceReference2DoubleMap<K>
- Specified by:
entrySet
in interfaceReference2DoubleSortedMap<K>
- Specified by:
entrySet
in interfaceSortedMap<K,
Double> - Overrides:
entrySet
in classReference2DoubleMaps.Singleton<K>
- Returns:
- a set view of the mappings contained in this map.
- See Also:
-
keySet
Description copied from interface:Reference2DoubleMap
- Specified by:
keySet
in interfaceMap<K,
Double> - Specified by:
keySet
in interfaceReference2DoubleMap<K>
- Specified by:
keySet
in interfaceReference2DoubleSortedMap<K>
- Specified by:
keySet
in interfaceSortedMap<K,
Double> - Overrides:
keySet
in classReference2DoubleMaps.Singleton<K>
- Returns:
- a set view of the keys contained in this map.
- See Also:
-
subMap
Description copied from interface:Reference2DoubleSortedMap
Returns a view of the portion of this sorted map whose keys range fromfromKey
, inclusive, totoKey
, exclusive. -
headMap
Description copied from interface:Reference2DoubleSortedMap
Returns a view of the portion of this sorted map whose keys are strictly less thantoKey
. -
tailMap
Description copied from interface:Reference2DoubleSortedMap
Returns a view of the portion of this sorted map whose keys are greater than or equal tofromKey
. -
firstKey
-
lastKey
-