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