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