Package it.unimi.dsi.fastutil.bytes
Interface Byte2ReferenceSortedMap<V>
- All Superinterfaces:
Byte2ReferenceFunction<V>
,Byte2ReferenceMap<V>
,Function<Byte,
,V> Function<Byte,
,V> IntFunction<V>
,Map<Byte,
,V> SequencedMap<Byte,
,V> SortedMap<Byte,
V>
- All Known Implementing Classes:
AbstractByte2ReferenceSortedMap
,Byte2ReferenceAVLTreeMap
,Byte2ReferenceLinkedOpenHashMap
,Byte2ReferenceRBTreeMap
,Byte2ReferenceSortedMaps.EmptySortedMap
,Byte2ReferenceSortedMaps.Singleton
,Byte2ReferenceSortedMaps.SynchronizedSortedMap
,Byte2ReferenceSortedMaps.UnmodifiableSortedMap
A type-specific
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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
A sorted entry set providing fast iteration.Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.bytes.Byte2ReferenceMap
Byte2ReferenceMap.Entry<V>, Byte2ReferenceMap.FastEntrySet<V>
-
Method Summary
Modifier and TypeMethodDescriptionReturns a type-specific sorted-set view of the mappings contained in this map.Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.default ObjectSortedSet
<Map.Entry<Byte, V>> entrySet()
Deprecated.Please use the corresponding type-specific method instead.byte
Returns the first (lowest) key currently in this map.default Byte
firstKey()
Deprecated.Please use the corresponding type-specific method instead.headMap
(byte toKey) Returns a view of the portion of this sorted map whose keys are strictly less thantoKey
.default Byte2ReferenceSortedMap
<V> Deprecated.Please use the corresponding type-specific method instead.keySet()
Returns a type-specific sorted-set view of the keys contained in this map.byte
Returns the last (highest) key currently in this map.default Byte
lastKey()
Deprecated.Please use the corresponding type-specific method instead.subMap
(byte fromKey, byte toKey) Returns a view of the portion of this sorted map whose keys range fromfromKey
, inclusive, totoKey
, exclusive.default Byte2ReferenceSortedMap
<V> Deprecated.Please use the corresponding type-specific method instead.tailMap
(byte fromKey) Returns a view of the portion of this sorted map whose keys are greater than or equal tofromKey
.default Byte2ReferenceSortedMap
<V> Deprecated.Please use the corresponding type-specific method instead.values()
Returns a type-specific set view of the values contained in this map.Methods inherited from interface it.unimi.dsi.fastutil.bytes.Byte2ReferenceFunction
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.bytes.Byte2ReferenceMap
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 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
-
subMap
Returns a view of the portion of this sorted map whose keys range fromfromKey
, inclusive, totoKey
, exclusive.- See Also:
- API Notes:
- Note that this specification strengthens the one given in
SortedMap.subMap(Object,Object)
.
-
headMap
Returns a view of the portion of this sorted map whose keys are strictly less thantoKey
.- See Also:
- API Notes:
- Note that this specification strengthens the one given in
SortedMap.headMap(Object)
.
-
tailMap
Returns a view of the portion of this sorted map whose keys are greater than or equal tofromKey
.- See Also:
- API Notes:
- Note that this specification strengthens the one given in
SortedMap.tailMap(Object)
.
-
firstByteKey
byte firstByteKey()Returns the first (lowest) key currently in this map.- See Also:
-
lastByteKey
byte lastByteKey()Returns the last (highest) key currently in this map.- See Also:
-
subMap
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
subMap
in interfaceSortedMap<Byte,
V> - API Notes:
- Note that this specification strengthens the one given in
SortedMap.subMap(Object,Object)
.
-
headMap
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
headMap
in interfaceSortedMap<Byte,
V> - API Notes:
- Note that this specification strengthens the one given in
SortedMap.headMap(Object)
.
-
tailMap
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
tailMap
in interfaceSortedMap<Byte,
V> - API Notes:
- Note that this specification strengthens the one given in
SortedMap.tailMap(Object)
.
-
firstKey
Deprecated.Please use the corresponding type-specific method instead. -
lastKey
Deprecated.Please use the corresponding type-specific method instead. -
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 interfaceByte2ReferenceMap<V>
- Specified by:
entrySet
in interfaceMap<Byte,
V> - Specified by:
entrySet
in interfaceSortedMap<Byte,
V> - Returns:
- a sorted-set view of the mappings contained in this map.
- See Also:
- API Notes:
- Note that this specification strengthens the one given in the corresponding type-specific unsorted map.
-
byte2ReferenceEntrySet
ObjectSortedSet<Byte2ReferenceMap.Entry<V>> byte2ReferenceEntrySet()Returns a type-specific sorted-set view of the mappings contained in this map.- Specified by:
byte2ReferenceEntrySet
in interfaceByte2ReferenceMap<V>
- Returns:
- a type-specific sorted-set view of the mappings contained in this map.
- See Also:
- API Notes:
- Note that this specification strengthens the one given in the corresponding type-specific unsorted map.
-
keySet
ByteSortedSet keySet()Returns a type-specific sorted-set view of the keys contained in this map.- Specified by:
keySet
in interfaceByte2ReferenceMap<V>
- Specified by:
keySet
in interfaceMap<Byte,
V> - Specified by:
keySet
in interfaceSortedMap<Byte,
V> - Returns:
- a sorted-set view of the keys contained in this map.
- See Also:
- API Notes:
- Note that this specification strengthens the one given in the corresponding type-specific unsorted map.
-
values
ReferenceCollection<V> values()Returns a type-specific set view of the values contained in this map.- Specified by:
values
in interfaceByte2ReferenceMap<V>
- Specified by:
values
in interfaceMap<Byte,
V> - Specified by:
values
in interfaceSortedMap<Byte,
V> - Returns:
- a set view of the values contained in this map.
- See Also:
- 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
ByteComparator comparator()Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.- Specified by:
comparator
in interfaceSortedMap<Byte,
V> - See Also:
- API Notes:
- Note that this specification strengthens the one given in
SortedMap.comparator()
.
-