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