Interface Object2IntSortedMap<K>
- All Superinterfaces:
Function<K,Integer>
,Function<K,Integer>
,Map<K,Integer>
,Object2IntFunction<K>
,Object2IntMap<K>
,SortedMap<K,Integer>
,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>, SortedMap<K,Integer>
SortedMap
; 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)
and SortedMap.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
Map.Entry<K extends Object,V extends Object>
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.objects.Object2IntMap
Object2IntMap.Entry<K>, Object2IntMap.FastEntrySet<K>
-
Method Summary
Modifier and Type Method Description Comparator<? super K>
comparator()
Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.default ObjectSortedSet<Map.Entry<K,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, forEach, get, hashCode, isEmpty, put, putAll, remove, replaceAll, size
Methods inherited from interface it.unimi.dsi.fastutil.objects.Object2IntFunction
andThen, andThen, andThen, andThen, andThen, andThen, andThen, andThen, andThen, applyAsInt, compose, compose, compose, compose, compose, compose, compose, compose, compose, getInt, put, removeInt
Methods inherited from interface it.unimi.dsi.fastutil.objects.Object2IntMap
clear, computeInt, computeIntIfAbsent, computeIntIfAbsentPartial, computeIntIfPresent, containsKey, containsValue, containsValue, defaultReturnValue, defaultReturnValue, get, getOrDefault, getOrDefault, merge, mergeInt, put, putIfAbsent, putIfAbsent, remove, remove, remove, replace, replace, replace, replace, size
-
Method Details
-
subMap
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)
.- Specified by:
subMap
in interfaceSortedMap<K,Integer>
- See Also:
SortedMap.subMap(Object,Object)
-
headMap
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)
.- Specified by:
headMap
in interfaceSortedMap<K,Integer>
- See Also:
SortedMap.headMap(Object)
-
tailMap
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)
.- Specified by:
tailMap
in interfaceSortedMap<K,Integer>
- See Also:
SortedMap.tailMap(Object)
-
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.
-
object2IntEntrySet
ObjectSortedSet<Object2IntMap.Entry<K>> object2IntEntrySet()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:
object2IntEntrySet
in interfaceObject2IntMap<K>
- Returns:
- a type-specific sorted-set view of the mappings contained in this map.
- See Also:
entrySet()
-
keySet
ObjectSortedSet<K> 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.
-
values
IntCollection 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
. -
comparator
Comparator<? super K> 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 interfaceSortedMap<K,Integer>
- See Also:
SortedMap.comparator()
-