Class Short2IntSortedMaps.Singleton
- java.lang.Object
-
- it.unimi.dsi.fastutil.shorts.AbstractShort2IntFunction
-
- it.unimi.dsi.fastutil.shorts.Short2IntFunctions.Singleton
-
- it.unimi.dsi.fastutil.shorts.Short2IntMaps.Singleton
-
- it.unimi.dsi.fastutil.shorts.Short2IntSortedMaps.Singleton
-
- All Implemented Interfaces:
Function<Short,Integer>,Short2IntFunction,Short2IntMap,Short2IntSortedMap,Serializable,Cloneable,Function<Short,Integer>,IntUnaryOperator,Map<Short,Integer>,SortedMap<Short,Integer>
- Enclosing class:
- Short2IntSortedMaps
public static class Short2IntSortedMaps.Singleton extends Short2IntMaps.Singleton implements Short2IntSortedMap, Serializable, Cloneable
An immutable class representing a type-specific singleton 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.Short2IntMap
Short2IntMap.Entry, Short2IntMap.FastEntrySet
-
Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.shorts.Short2IntSortedMap
Short2IntSortedMap.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,Integer>>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.Short2IntSortedMapheadMap(short to)Returns a view of the portion of this sorted map whose keys are strictly less thantoKey.Short2IntSortedMapheadMap(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<Short2IntMap.Entry>short2IntEntrySet()Returns a type-specific set view of the mappings contained in this map.Short2IntSortedMapsubMap(short from, short to)Returns a view of the portion of this sorted map whose keys range fromfromKey, inclusive, totoKey, exclusive.Short2IntSortedMapsubMap(Short ofrom, Short oto)Deprecated.Please use the corresponding type-specific method instead.Short2IntSortedMaptailMap(short from)Returns a view of the portion of this sorted map whose keys are greater than or equal tofromKey.Short2IntSortedMaptailMap(Short ofrom)Deprecated.Please use the corresponding type-specific method instead.-
Methods inherited from class it.unimi.dsi.fastutil.shorts.Short2IntMaps.Singleton
containsValue, containsValue, equals, hashCode, isEmpty, putAll, toString, values
-
Methods inherited from class it.unimi.dsi.fastutil.shorts.Short2IntFunctions.Singleton
clone, containsKey, get, size
-
Methods inherited from class it.unimi.dsi.fastutil.shorts.AbstractShort2IntFunction
defaultReturnValue, defaultReturnValue
-
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.Short2IntFunction
applyAsInt, get, put, remove
-
Methods inherited from interface it.unimi.dsi.fastutil.shorts.Short2IntMap
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.Short2IntSortedMap
values
-
-
-
-
Method Detail
-
comparator
public ShortComparator comparator()
Description copied from interface:Short2IntSortedMapReturns 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 interfaceShort2IntSortedMap- Specified by:
comparatorin interfaceSortedMap<Short,Integer>- See Also:
SortedMap.comparator()
-
short2IntEntrySet
public ObjectSortedSet<Short2IntMap.Entry> short2IntEntrySet()
Description copied from interface:Short2IntMapReturns 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:
short2IntEntrySetin interfaceShort2IntMap- Specified by:
short2IntEntrySetin interfaceShort2IntSortedMap- Overrides:
short2IntEntrySetin classShort2IntMaps.Singleton- Returns:
- a type-specific set view of the mappings contained in this map.
- See Also:
Map.entrySet()
-
entrySet
@Deprecated public ObjectSortedSet<Map.Entry<Short,Integer>> entrySet()
Deprecated.Please use the corresponding type-specific method instead.Returns a set view of the mappings contained in this map.Note that this specification strengthens the one given in
Map.entrySet().- Specified by:
entrySetin interfaceMap<Short,Integer>- Specified by:
entrySetin interfaceShort2IntMap- Specified by:
entrySetin interfaceShort2IntSortedMap- Specified by:
entrySetin interfaceSortedMap<Short,Integer>- Overrides:
entrySetin classShort2IntMaps.Singleton- Returns:
- a set view of the mappings contained in this map.
- See Also:
Map.entrySet()
-
keySet
public ShortSortedSet keySet()
Description copied from interface:Short2IntMapNote that this specification strengthens the one given in
Map.keySet().- Specified by:
keySetin interfaceMap<Short,Integer>- Specified by:
keySetin interfaceShort2IntMap- Specified by:
keySetin interfaceShort2IntSortedMap- Specified by:
keySetin interfaceSortedMap<Short,Integer>- Overrides:
keySetin classShort2IntMaps.Singleton- Returns:
- a set view of the keys contained in this map.
- See Also:
Map.keySet()
-
subMap
public Short2IntSortedMap subMap(short from, short to)
Description copied from interface:Short2IntSortedMapReturns 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 interfaceShort2IntSortedMap- See Also:
SortedMap.subMap(Object,Object)
-
headMap
public Short2IntSortedMap headMap(short to)
Description copied from interface:Short2IntSortedMapReturns 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 interfaceShort2IntSortedMap- See Also:
SortedMap.headMap(Object)
-
tailMap
public Short2IntSortedMap tailMap(short from)
Description copied from interface:Short2IntSortedMapReturns 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 interfaceShort2IntSortedMap- See Also:
SortedMap.tailMap(Object)
-
firstShortKey
public short firstShortKey()
Description copied from interface:Short2IntSortedMapReturns the first (lowest) key currently in this map.- Specified by:
firstShortKeyin interfaceShort2IntSortedMap- See Also:
SortedMap.firstKey()
-
lastShortKey
public short lastShortKey()
Description copied from interface:Short2IntSortedMapReturns the last (highest) key currently in this map.- Specified by:
lastShortKeyin interfaceShort2IntSortedMap- See Also:
SortedMap.lastKey()
-
headMap
@Deprecated public Short2IntSortedMap 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 Short2IntSortedMap 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 Short2IntSortedMap 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.
-
-