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