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