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