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