| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.shorts |
Provides type-specific classes for short elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractShort2CharSortedMap
An abstract class providing basic methods for sorted maps implementing a type-specific interface.
|
class |
Short2CharAVLTreeMap
A type-specific AVL tree map with a fast, small-footprint implementation.
|
class |
Short2CharLinkedOpenHashMap
A type-specific linked hash map with with a fast, small-footprint implementation.
|
class |
Short2CharRBTreeMap
A type-specific red-black tree map with a fast, small-footprint implementation.
|
static class |
Short2CharSortedMaps.EmptySortedMap
An immutable class representing an empty type-specific sorted map.
|
static class |
Short2CharSortedMaps.Singleton
An immutable class representing a type-specific singleton sorted map.
|
static class |
Short2CharSortedMaps.SynchronizedSortedMap
A synchronized wrapper class for sorted maps.
|
static class |
Short2CharSortedMaps.UnmodifiableSortedMap
An unmodifiable wrapper class for sorted maps.
|
| Modifier and Type | Field and Description |
|---|---|
protected Short2CharSortedMap |
Short2CharSortedMaps.SynchronizedSortedMap.sortedMap |
protected Short2CharSortedMap |
Short2CharSortedMaps.UnmodifiableSortedMap.sortedMap |
| Modifier and Type | Method and Description |
|---|---|
Short2CharSortedMap |
Short2CharLinkedOpenHashMap.headMap(short to)
Returns a view of the portion of this sorted map whose keys are strictly less than
toKey. |
Short2CharSortedMap |
Short2CharSortedMaps.EmptySortedMap.headMap(short to) |
Short2CharSortedMap |
Short2CharSortedMaps.Singleton.headMap(short to) |
Short2CharSortedMap |
Short2CharSortedMaps.SynchronizedSortedMap.headMap(short to) |
Short2CharSortedMap |
Short2CharSortedMaps.UnmodifiableSortedMap.headMap(short to) |
Short2CharSortedMap |
Short2CharSortedMap.headMap(short toKey)
Returns a view of the portion of this sorted map whose keys are strictly less than
toKey. |
Short2CharSortedMap |
Short2CharAVLTreeMap.headMap(short to) |
Short2CharSortedMap |
Short2CharRBTreeMap.headMap(short to) |
Short2CharSortedMap |
Short2CharSortedMaps.EmptySortedMap.headMap(Short oto)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2CharSortedMap |
Short2CharSortedMaps.Singleton.headMap(Short oto)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2CharSortedMap |
Short2CharSortedMaps.SynchronizedSortedMap.headMap(Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2CharSortedMap |
Short2CharSortedMaps.UnmodifiableSortedMap.headMap(Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
default Short2CharSortedMap |
Short2CharSortedMap.headMap(Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
static Short2CharSortedMap |
Short2CharSortedMaps.singleton(short key,
char value)
Returns a type-specific immutable sorted map containing only the specified pair.
|
static Short2CharSortedMap |
Short2CharSortedMaps.singleton(Short key,
Character value)
Returns a type-specific immutable sorted map containing only the specified pair.
|
static Short2CharSortedMap |
Short2CharSortedMaps.singleton(Short key,
Character value,
ShortComparator comparator)
RETURNS a type-specific immutable sorted map containing only the specified pair.
|
static Short2CharSortedMap |
Short2CharSortedMaps.singleton(short key,
char value,
ShortComparator comparator)
Returns a type-specific immutable sorted map containing only the specified pair.
|
Short2CharSortedMap |
Short2CharLinkedOpenHashMap.subMap(short from,
short to)
Returns a view of the portion of this sorted map whose keys range from
fromKey, inclusive, to toKey, exclusive. |
Short2CharSortedMap |
Short2CharSortedMaps.EmptySortedMap.subMap(short from,
short to) |
Short2CharSortedMap |
Short2CharSortedMaps.Singleton.subMap(short from,
short to) |
Short2CharSortedMap |
Short2CharSortedMaps.SynchronizedSortedMap.subMap(short from,
short to) |
Short2CharSortedMap |
Short2CharSortedMaps.UnmodifiableSortedMap.subMap(short from,
short to) |
Short2CharSortedMap |
Short2CharSortedMap.subMap(short fromKey,
short toKey)
Returns a view of the portion of this sorted map whose keys range from
fromKey, inclusive, to toKey, exclusive. |
Short2CharSortedMap |
Short2CharAVLTreeMap.subMap(short from,
short to) |
Short2CharSortedMap |
Short2CharRBTreeMap.subMap(short from,
short to) |
Short2CharSortedMap |
Short2CharSortedMaps.EmptySortedMap.subMap(Short ofrom,
Short oto)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2CharSortedMap |
Short2CharSortedMaps.Singleton.subMap(Short ofrom,
Short oto)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2CharSortedMap |
Short2CharSortedMaps.SynchronizedSortedMap.subMap(Short from,
Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2CharSortedMap |
Short2CharSortedMaps.UnmodifiableSortedMap.subMap(Short from,
Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
default Short2CharSortedMap |
Short2CharSortedMap.subMap(Short from,
Short to)
Deprecated.
Please use the corresponding type-specific method instead.
|
static Short2CharSortedMap |
Short2CharSortedMaps.synchronize(Short2CharSortedMap m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
|
static Short2CharSortedMap |
Short2CharSortedMaps.synchronize(Short2CharSortedMap m,
Object sync)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
|
Short2CharSortedMap |
Short2CharLinkedOpenHashMap.tailMap(short from)
Returns a view of the portion of this sorted map whose keys are greater than or equal to
fromKey. |
Short2CharSortedMap |
Short2CharSortedMaps.EmptySortedMap.tailMap(short from) |
Short2CharSortedMap |
Short2CharSortedMaps.Singleton.tailMap(short from) |
Short2CharSortedMap |
Short2CharSortedMaps.SynchronizedSortedMap.tailMap(short from) |
Short2CharSortedMap |
Short2CharSortedMaps.UnmodifiableSortedMap.tailMap(short from) |
Short2CharSortedMap |
Short2CharSortedMap.tailMap(short fromKey)
Returns a view of the portion of this sorted map whose keys are greater than or equal to
fromKey. |
Short2CharSortedMap |
Short2CharAVLTreeMap.tailMap(short from) |
Short2CharSortedMap |
Short2CharRBTreeMap.tailMap(short from) |
Short2CharSortedMap |
Short2CharSortedMaps.EmptySortedMap.tailMap(Short ofrom)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2CharSortedMap |
Short2CharSortedMaps.Singleton.tailMap(Short ofrom)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2CharSortedMap |
Short2CharSortedMaps.SynchronizedSortedMap.tailMap(Short from)
Deprecated.
Please use the corresponding type-specific method instead.
|
Short2CharSortedMap |
Short2CharSortedMaps.UnmodifiableSortedMap.tailMap(Short from)
Deprecated.
Please use the corresponding type-specific method instead.
|
default Short2CharSortedMap |
Short2CharSortedMap.tailMap(Short from)
Deprecated.
Please use the corresponding type-specific method instead.
|
static Short2CharSortedMap |
Short2CharSortedMaps.unmodifiable(Short2CharSortedMap m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
|
| Modifier and Type | Method and Description |
|---|---|
static ObjectBidirectionalIterable<Short2CharMap.Entry> |
Short2CharSortedMaps.fastIterable(Short2CharSortedMap map)
|
static ObjectBidirectionalIterator<Short2CharMap.Entry> |
Short2CharSortedMaps.fastIterator(Short2CharSortedMap map)
|
static Short2CharSortedMap |
Short2CharSortedMaps.synchronize(Short2CharSortedMap m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
|
static Short2CharSortedMap |
Short2CharSortedMaps.synchronize(Short2CharSortedMap m,
Object sync)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
|
static Short2CharSortedMap |
Short2CharSortedMaps.unmodifiable(Short2CharSortedMap m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
|
| Constructor and Description |
|---|
Short2CharAVLTreeMap(Short2CharSortedMap m)
Creates a new tree map copying a given sorted map (and its
Comparator). |
Short2CharRBTreeMap(Short2CharSortedMap m)
Creates a new tree map copying a given sorted map (and its
Comparator). |
SynchronizedSortedMap(Short2CharSortedMap m) |
SynchronizedSortedMap(Short2CharSortedMap m,
Object sync) |
UnmodifiableSortedMap(Short2CharSortedMap m) |
Copyright © 2020. All rights reserved.