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