Class Short2ByteSortedMaps.EmptySortedMap
- java.lang.Object
-
- it.unimi.dsi.fastutil.shorts.AbstractShort2ByteFunction
-
- it.unimi.dsi.fastutil.shorts.Short2ByteFunctions.EmptyFunction
-
- it.unimi.dsi.fastutil.shorts.Short2ByteMaps.EmptyMap
-
- it.unimi.dsi.fastutil.shorts.Short2ByteSortedMaps.EmptySortedMap
-
- All Implemented Interfaces:
Function<Short,Byte>,Short2ByteFunction,Short2ByteMap,Short2ByteSortedMap,Serializable,Cloneable,Function<Short,Byte>,IntUnaryOperator,Map<Short,Byte>,SortedMap<Short,Byte>
- Enclosing class:
- Short2ByteSortedMaps
public static class Short2ByteSortedMaps.EmptySortedMap extends Short2ByteMaps.EmptyMap implements Short2ByteSortedMap, Serializable, Cloneable
An immutable class representing an empty type-specific sorted map.This class may be useful to implement your own in case you subclass a type-specific sorted map.
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
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.shorts.Short2ByteMap
Short2ByteMap.Entry, Short2ByteMap.FastEntrySet
-
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.shorts.Short2ByteSortedMap
Short2ByteSortedMap.FastSortedEntrySet
-
-
Method Summary
Modifier and Type Method Description ShortComparatorcomparator()Returns the comparator associated with this sorted set, or null if it uses its keys' natural ordering.ObjectSortedSet<Map.Entry<Short,Byte>>entrySet()Deprecated.Please use the corresponding type-specific method instead.ShortfirstKey()Deprecated.Please use the corresponding type-specific method instead.shortfirstShortKey()Returns the first (lowest) key currently in this map.Short2ByteSortedMapheadMap(short to)Returns a view of the portion of this sorted map whose keys are strictly less thantoKey.Short2ByteSortedMapheadMap(Short oto)Deprecated.Please use the corresponding type-specific method instead.ShortSortedSetkeySet()ShortlastKey()Deprecated.Please use the corresponding type-specific method instead.shortlastShortKey()Returns the last (highest) key currently in this map.ObjectSortedSet<Short2ByteMap.Entry>short2ByteEntrySet()Returns a type-specific set view of the mappings contained in this map.Short2ByteSortedMapsubMap(short from, short to)Returns a view of the portion of this sorted map whose keys range fromfromKey, inclusive, totoKey, exclusive.Short2ByteSortedMapsubMap(Short ofrom, Short oto)Deprecated.Please use the corresponding type-specific method instead.Short2ByteSortedMaptailMap(short from)Returns a view of the portion of this sorted map whose keys are greater than or equal tofromKey.Short2ByteSortedMaptailMap(Short ofrom)Deprecated.Please use the corresponding type-specific method instead.-
Methods inherited from class it.unimi.dsi.fastutil.shorts.Short2ByteMaps.EmptyMap
clone, containsValue, containsValue, equals, hashCode, isEmpty, putAll, toString, values
-
Methods inherited from class it.unimi.dsi.fastutil.shorts.Short2ByteFunctions.EmptyFunction
clear, containsKey, defaultReturnValue, defaultReturnValue, get, size
-
Methods inherited from interface java.util.function.IntUnaryOperator
andThen, compose
-
Methods inherited from interface java.util.Map
clear, containsKey, equals, forEach, get, hashCode, isEmpty, put, putAll, remove, replaceAll, size
-
Methods inherited from interface it.unimi.dsi.fastutil.shorts.Short2ByteFunction
applyAsInt, get, put, remove
-
Methods inherited from interface it.unimi.dsi.fastutil.shorts.Short2ByteMap
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
-
Methods inherited from interface it.unimi.dsi.fastutil.shorts.Short2ByteSortedMap
values
-
-
-
-
Method Detail
-
comparator
public ShortComparator comparator()
Description copied from interface:Short2ByteSortedMapReturns 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:
comparatorin interfaceShort2ByteSortedMap- Specified by:
comparatorin interfaceSortedMap<Short,Byte>- See Also:
SortedMap.comparator()
-
short2ByteEntrySet
public ObjectSortedSet<Short2ByteMap.Entry> short2ByteEntrySet()
Description copied from interface:Short2ByteMapReturns 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 anObjectSetof type-specific entries (the latter makes it possible to access keys and values with type-specific methods).- Specified by:
short2ByteEntrySetin interfaceShort2ByteMap- Specified by:
short2ByteEntrySetin interfaceShort2ByteSortedMap- Overrides:
short2ByteEntrySetin classShort2ByteMaps.EmptyMap- Returns:
- a type-specific set view of the mappings contained in this map.
- See Also:
Map.entrySet()
-
entrySet
@Deprecated public ObjectSortedSet<Map.Entry<Short,Byte>> 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:
entrySetin interfaceMap<Short,Byte>- Specified by:
entrySetin interfaceShort2ByteMap- Specified by:
entrySetin interfaceShort2ByteSortedMap- Specified by:
entrySetin interfaceSortedMap<Short,Byte>- Returns:
- a sorted-set view of the mappings contained in this map.
- See Also:
SortedMap.entrySet()
-
keySet
public ShortSortedSet keySet()
Description copied from interface:Short2ByteMapNote that this specification strengthens the one given in
Map.keySet().- Specified by:
keySetin interfaceMap<Short,Byte>- Specified by:
keySetin interfaceShort2ByteMap- Specified by:
keySetin interfaceShort2ByteSortedMap- Specified by:
keySetin interfaceSortedMap<Short,Byte>- Overrides:
keySetin classShort2ByteMaps.EmptyMap- Returns:
- a set view of the keys contained in this map.
- See Also:
Map.keySet()
-
subMap
public Short2ByteSortedMap subMap(short from, short to)
Description copied from interface:Short2ByteSortedMapReturns 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:
subMapin interfaceShort2ByteSortedMap- See Also:
SortedMap.subMap(Object,Object)
-
headMap
public Short2ByteSortedMap headMap(short to)
Description copied from interface:Short2ByteSortedMapReturns 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:
headMapin interfaceShort2ByteSortedMap- See Also:
SortedMap.headMap(Object)
-
tailMap
public Short2ByteSortedMap tailMap(short from)
Description copied from interface:Short2ByteSortedMapReturns 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:
tailMapin interfaceShort2ByteSortedMap- See Also:
SortedMap.tailMap(Object)
-
firstShortKey
public short firstShortKey()
Description copied from interface:Short2ByteSortedMapReturns the first (lowest) key currently in this map.- Specified by:
firstShortKeyin interfaceShort2ByteSortedMap- See Also:
SortedMap.firstKey()
-
lastShortKey
public short lastShortKey()
Description copied from interface:Short2ByteSortedMapReturns the last (highest) key currently in this map.- Specified by:
lastShortKeyin interfaceShort2ByteSortedMap- See Also:
SortedMap.lastKey()
-
headMap
@Deprecated public Short2ByteSortedMap headMap(Short oto)
Deprecated.Please use the corresponding type-specific method instead.Note that this specification strengthens the one given in
SortedMap.headMap(Object).
-
tailMap
@Deprecated public Short2ByteSortedMap tailMap(Short ofrom)
Deprecated.Please use the corresponding type-specific method instead.Note that this specification strengthens the one given in
SortedMap.tailMap(Object).
-
subMap
@Deprecated public Short2ByteSortedMap subMap(Short ofrom, Short oto)
Deprecated.Please use the corresponding type-specific method instead.Note that this specification strengthens the one given in
SortedMap.subMap(Object,Object).
-
firstKey
@Deprecated public Short firstKey()
Deprecated.Please use the corresponding type-specific method instead.
-
lastKey
@Deprecated public Short lastKey()
Deprecated.Please use the corresponding type-specific method instead.
-
-