Interface Float2FloatSortedMap
-
- All Superinterfaces:
java.util.function.DoubleUnaryOperator
,Float2FloatFunction
,Float2FloatMap
,Function<java.lang.Float,java.lang.Float>
,java.util.function.Function<java.lang.Float,java.lang.Float>
,java.util.Map<java.lang.Float,java.lang.Float>
,java.util.SortedMap<java.lang.Float,java.lang.Float>
- All Known Implementing Classes:
AbstractFloat2FloatSortedMap
,Float2FloatAVLTreeMap
,Float2FloatLinkedOpenHashMap
,Float2FloatRBTreeMap
,Float2FloatSortedMaps.EmptySortedMap
,Float2FloatSortedMaps.Singleton
,Float2FloatSortedMaps.SynchronizedSortedMap
,Float2FloatSortedMaps.UnmodifiableSortedMap
public interface Float2FloatSortedMap extends Float2FloatMap, java.util.SortedMap<java.lang.Float,java.lang.Float>
A type-specificSortedMap
; provides some additional methods that use polymorphism to avoid (un)boxing.Additionally, this interface strengthens
entrySet()
,keySet()
,values()
,comparator()
,SortedMap.subMap(Object,Object)
,SortedMap.headMap(Object)
andSortedMap.tailMap(Object)
.- See Also:
SortedMap
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
Float2FloatSortedMap.FastSortedEntrySet
A sorted entry set providing fast iteration.-
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.floats.Float2FloatMap
Float2FloatMap.Entry, Float2FloatMap.FastEntrySet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description FloatComparator
comparator()
Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.default ObjectSortedSet<java.util.Map.Entry<java.lang.Float,java.lang.Float>>
entrySet()
Deprecated.Please use the corresponding type-specific method instead.float
firstFloatKey()
Returns the first (lowest) key currently in this map.default java.lang.Float
firstKey()
Deprecated.Please use the corresponding type-specific method instead.ObjectSortedSet<Float2FloatMap.Entry>
float2FloatEntrySet()
Returns a type-specific sorted-set view of the mappings contained in this map.Float2FloatSortedMap
headMap(float toKey)
Returns a view of the portion of this sorted map whose keys are strictly less thantoKey
.default Float2FloatSortedMap
headMap(java.lang.Float to)
Deprecated.Please use the corresponding type-specific method instead.FloatSortedSet
keySet()
Returns a type-specific sorted-set view of the keys contained in this map.float
lastFloatKey()
Returns the last (highest) key currently in this map.default java.lang.Float
lastKey()
Deprecated.Please use the corresponding type-specific method instead.Float2FloatSortedMap
subMap(float fromKey, float toKey)
Returns a view of the portion of this sorted map whose keys range fromfromKey
, inclusive, totoKey
, exclusive.default Float2FloatSortedMap
subMap(java.lang.Float from, java.lang.Float to)
Deprecated.Please use the corresponding type-specific method instead.Float2FloatSortedMap
tailMap(float fromKey)
Returns a view of the portion of this sorted map whose keys are greater than or equal tofromKey
.default Float2FloatSortedMap
tailMap(java.lang.Float from)
Deprecated.Please use the corresponding type-specific method instead.FloatCollection
values()
Returns a type-specific set view of the values contained in this map.-
Methods inherited from interface it.unimi.dsi.fastutil.floats.Float2FloatFunction
andThen, andThen, andThen, andThen, andThen, andThen, andThen, andThen, andThen, applyAsDouble, compose, compose, compose, compose, compose, compose, compose, compose, compose, get, put, remove
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.Float2FloatMap
clear, compute, compute, computeIfAbsent, computeIfAbsent, computeIfAbsentNullable, computeIfAbsentPartial, computeIfPresent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, defaultReturnValue, defaultReturnValue, get, getOrDefault, getOrDefault, merge, merge, put, putIfAbsent, putIfAbsent, remove, remove, remove, replace, replace, replace, replace, size
-
-
-
-
Method Detail
-
subMap
Float2FloatSortedMap subMap(float fromKey, float toKey)
Returns a view of the portion of this sorted map whose keys range fromfromKey
, inclusive, totoKey
, exclusive.Note that this specification strengthens the one given in
SortedMap.subMap(Object,Object)
.- See Also:
SortedMap.subMap(Object,Object)
-
headMap
Float2FloatSortedMap headMap(float toKey)
Returns a view of the portion of this sorted map whose keys are strictly less thantoKey
.Note that this specification strengthens the one given in
SortedMap.headMap(Object)
.- See Also:
SortedMap.headMap(Object)
-
tailMap
Float2FloatSortedMap tailMap(float fromKey)
Returns a view of the portion of this sorted map whose keys are greater than or equal tofromKey
.Note that this specification strengthens the one given in
SortedMap.tailMap(Object)
.- See Also:
SortedMap.tailMap(Object)
-
firstFloatKey
float firstFloatKey()
Returns the first (lowest) key currently in this map.- See Also:
SortedMap.firstKey()
-
lastFloatKey
float lastFloatKey()
Returns the last (highest) key currently in this map.- See Also:
SortedMap.lastKey()
-
subMap
@Deprecated default Float2FloatSortedMap subMap(java.lang.Float from, java.lang.Float to)
Deprecated.Please use the corresponding type-specific method instead.Note that this specification strengthens the one given in
SortedMap.subMap(Object,Object)
.- Specified by:
subMap
in interfacejava.util.SortedMap<java.lang.Float,java.lang.Float>
-
headMap
@Deprecated default Float2FloatSortedMap headMap(java.lang.Float to)
Deprecated.Please use the corresponding type-specific method instead.Note that this specification strengthens the one given in
SortedMap.headMap(Object)
.- Specified by:
headMap
in interfacejava.util.SortedMap<java.lang.Float,java.lang.Float>
-
tailMap
@Deprecated default Float2FloatSortedMap tailMap(java.lang.Float from)
Deprecated.Please use the corresponding type-specific method instead.Note that this specification strengthens the one given in
SortedMap.tailMap(Object)
.- Specified by:
tailMap
in interfacejava.util.SortedMap<java.lang.Float,java.lang.Float>
-
firstKey
@Deprecated default java.lang.Float firstKey()
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
firstKey
in interfacejava.util.SortedMap<java.lang.Float,java.lang.Float>
-
lastKey
@Deprecated default java.lang.Float lastKey()
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
lastKey
in interfacejava.util.SortedMap<java.lang.Float,java.lang.Float>
-
entrySet
@Deprecated default ObjectSortedSet<java.util.Map.Entry<java.lang.Float,java.lang.Float>> entrySet()
Deprecated.Please use the corresponding type-specific method instead.Returns a sorted-set view of the mappings contained in this map.Note that this specification strengthens the one given in the corresponding type-specific unsorted map.
- Specified by:
entrySet
in interfaceFloat2FloatMap
- Specified by:
entrySet
in interfacejava.util.Map<java.lang.Float,java.lang.Float>
- Specified by:
entrySet
in interfacejava.util.SortedMap<java.lang.Float,java.lang.Float>
- Returns:
- a sorted-set view of the mappings contained in this map.
- See Also:
SortedMap.entrySet()
-
float2FloatEntrySet
ObjectSortedSet<Float2FloatMap.Entry> float2FloatEntrySet()
Returns a type-specific sorted-set view of the mappings contained in this map.Note that this specification strengthens the one given in the corresponding type-specific unsorted map.
- Specified by:
float2FloatEntrySet
in interfaceFloat2FloatMap
- Returns:
- a type-specific sorted-set view of the mappings contained in this map.
- See Also:
entrySet()
-
keySet
FloatSortedSet keySet()
Returns a type-specific sorted-set view of the keys contained in this map.Note that this specification strengthens the one given in the corresponding type-specific unsorted map.
- Specified by:
keySet
in interfaceFloat2FloatMap
- Specified by:
keySet
in interfacejava.util.Map<java.lang.Float,java.lang.Float>
- Specified by:
keySet
in interfacejava.util.SortedMap<java.lang.Float,java.lang.Float>
- Returns:
- a sorted-set view of the keys contained in this map.
- See Also:
SortedMap.keySet()
-
values
FloatCollection values()
Returns a type-specific set view of the values contained in this map.Note that this specification strengthens the one given in
Map.values()
, which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extendsSortedMap
.- Specified by:
values
in interfaceFloat2FloatMap
- Specified by:
values
in interfacejava.util.Map<java.lang.Float,java.lang.Float>
- Specified by:
values
in interfacejava.util.SortedMap<java.lang.Float,java.lang.Float>
- Returns:
- a set view of the values contained in this map.
- See Also:
SortedMap.values()
-
comparator
FloatComparator comparator()
Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.Note that this specification strengthens the one given in
SortedMap.comparator()
.- Specified by:
comparator
in interfacejava.util.SortedMap<java.lang.Float,java.lang.Float>
- See Also:
SortedMap.comparator()
-
-