Package it.unimi.dsi.fastutil.objects
Interface Object2IntSortedMap<K>
-
- All Superinterfaces:
Function<K,java.lang.Integer>
,java.util.function.Function<K,java.lang.Integer>
,java.util.Map<K,java.lang.Integer>
,Object2IntFunction<K>
,Object2IntMap<K>
,java.util.SortedMap<K,java.lang.Integer>
,java.util.function.ToIntFunction<K>
- All Known Implementing Classes:
AbstractObject2IntSortedMap
,Object2IntAVLTreeMap
,Object2IntLinkedOpenCustomHashMap
,Object2IntLinkedOpenHashMap
,Object2IntRBTreeMap
,Object2IntSortedMaps.EmptySortedMap
,Object2IntSortedMaps.Singleton
,Object2IntSortedMaps.SynchronizedSortedMap
,Object2IntSortedMaps.UnmodifiableSortedMap
public interface Object2IntSortedMap<K> extends Object2IntMap<K>, java.util.SortedMap<K,java.lang.Integer>
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
Object2IntSortedMap.FastSortedEntrySet<K>
A sorted entry set providing fast iteration.-
Nested classes/interfaces inherited from interface java.util.Map
java.util.Map.Entry<K extends java.lang.Object,V extends java.lang.Object>
-
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.objects.Object2IntMap
Object2IntMap.Entry<K>, Object2IntMap.FastEntrySet<K>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description java.util.Comparator<? super K>
comparator()
Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.default ObjectSortedSet<java.util.Map.Entry<K,java.lang.Integer>>
entrySet()
Deprecated.Please use the corresponding type-specific method instead.Object2IntSortedMap<K>
headMap(K toKey)
Returns a view of the portion of this sorted map whose keys are strictly less thantoKey
.ObjectSortedSet<K>
keySet()
Returns a type-specific sorted-set view of the keys contained in this map.ObjectSortedSet<Object2IntMap.Entry<K>>
object2IntEntrySet()
Returns a type-specific sorted-set view of the mappings contained in this map.Object2IntSortedMap<K>
subMap(K fromKey, K toKey)
Returns a view of the portion of this sorted map whose keys range fromfromKey
, inclusive, totoKey
, exclusive.Object2IntSortedMap<K>
tailMap(K fromKey)
Returns a view of the portion of this sorted map whose keys are greater than or equal tofromKey
.IntCollection
values()
Returns a type-specific set view of the values contained in this map.-
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.Object2IntFunction
andThen, andThenByte, andThenChar, andThenDouble, andThenFloat, andThenInt, andThenLong, andThenObject, andThenReference, andThenShort, applyAsInt, composeByte, composeChar, composeDouble, composeFloat, composeInt, composeLong, composeObject, composeReference, composeShort, getInt, put, removeInt
-
Methods inherited from interface it.unimi.dsi.fastutil.objects.Object2IntMap
clear, computeIfAbsent, computeIfAbsent, computeInt, computeIntIfAbsent, computeIntIfAbsentPartial, computeIntIfPresent, containsKey, containsValue, containsValue, defaultReturnValue, defaultReturnValue, forEach, get, getOrDefault, getOrDefault, merge, merge, mergeInt, mergeInt, mergeInt, put, putIfAbsent, putIfAbsent, remove, remove, remove, replace, replace, replace, replace, size
-
-
-
-
Method Detail
-
subMap
Object2IntSortedMap<K> subMap(K fromKey, K toKey)
Returns a view of the portion of this sorted map whose keys range fromfromKey
, inclusive, totoKey
, exclusive.- Specified by:
subMap
in interfacejava.util.SortedMap<K,java.lang.Integer>
- See Also:
SortedMap.subMap(Object,Object)
- API Notes:
- Note that this specification strengthens the one given in
SortedMap.subMap(Object,Object)
.
-
headMap
Object2IntSortedMap<K> headMap(K toKey)
Returns a view of the portion of this sorted map whose keys are strictly less thantoKey
.- Specified by:
headMap
in interfacejava.util.SortedMap<K,java.lang.Integer>
- See Also:
SortedMap.headMap(Object)
- API Notes:
- Note that this specification strengthens the one given in
SortedMap.headMap(Object)
.
-
tailMap
Object2IntSortedMap<K> tailMap(K fromKey)
Returns a view of the portion of this sorted map whose keys are greater than or equal tofromKey
.- Specified by:
tailMap
in interfacejava.util.SortedMap<K,java.lang.Integer>
- See Also:
SortedMap.tailMap(Object)
- API Notes:
- Note that this specification strengthens the one given in
SortedMap.tailMap(Object)
.
-
entrySet
@Deprecated default ObjectSortedSet<java.util.Map.Entry<K,java.lang.Integer>> entrySet()
Deprecated.Please use the corresponding type-specific method instead.Returns a sorted-set view of the mappings contained in this map.- Specified by:
entrySet
in interfacejava.util.Map<K,java.lang.Integer>
- Specified by:
entrySet
in interfaceObject2IntMap<K>
- Specified by:
entrySet
in interfacejava.util.SortedMap<K,java.lang.Integer>
- Returns:
- a sorted-set view of the mappings contained in this map.
- See Also:
SortedMap.entrySet()
- API Notes:
- Note that this specification strengthens the one given in the corresponding type-specific unsorted map.
-
object2IntEntrySet
ObjectSortedSet<Object2IntMap.Entry<K>> object2IntEntrySet()
Returns a type-specific sorted-set view of the mappings contained in this map.- Specified by:
object2IntEntrySet
in interfaceObject2IntMap<K>
- Returns:
- a type-specific sorted-set view of the mappings contained in this map.
- See Also:
entrySet()
- API Notes:
- Note that this specification strengthens the one given in the corresponding type-specific unsorted map.
-
keySet
ObjectSortedSet<K> keySet()
Returns a type-specific sorted-set view of the keys contained in this map.- Specified by:
keySet
in interfacejava.util.Map<K,java.lang.Integer>
- Specified by:
keySet
in interfaceObject2IntMap<K>
- Specified by:
keySet
in interfacejava.util.SortedMap<K,java.lang.Integer>
- Returns:
- a sorted-set view of the keys contained in this map.
- See Also:
SortedMap.keySet()
- API Notes:
- Note that this specification strengthens the one given in the corresponding type-specific unsorted map.
-
values
IntCollection values()
Returns a type-specific set view of the values contained in this map.- Specified by:
values
in interfacejava.util.Map<K,java.lang.Integer>
- Specified by:
values
in interfaceObject2IntMap<K>
- Specified by:
values
in interfacejava.util.SortedMap<K,java.lang.Integer>
- Returns:
- a set view of the values contained in this map.
- See Also:
SortedMap.values()
- API Notes:
- 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
.
-
comparator
java.util.Comparator<? super K> comparator()
Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.- Specified by:
comparator
in interfacejava.util.SortedMap<K,java.lang.Integer>
- See Also:
SortedMap.comparator()
- API Notes:
- Note that this specification strengthens the one given in
SortedMap.comparator()
.
-
-