|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Char2ObjectSortedMap | |
---|---|
it.unimi.dsi.fastutil.chars | Provides type-specific classes for character elements or keys. |
Uses of Char2ObjectSortedMap in it.unimi.dsi.fastutil.chars |
---|
Classes in it.unimi.dsi.fastutil.chars that implement Char2ObjectSortedMap | |
---|---|
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. |
Fields in it.unimi.dsi.fastutil.chars declared as Char2ObjectSortedMap | |
---|---|
protected Char2ObjectSortedMap<V> |
Char2ObjectSortedMaps.SynchronizedSortedMap.sortedMap
|
protected Char2ObjectSortedMap<V> |
Char2ObjectSortedMaps.UnmodifiableSortedMap.sortedMap
|
Methods in it.unimi.dsi.fastutil.chars that return Char2ObjectSortedMap | ||
---|---|---|
Char2ObjectSortedMap<V> |
Char2ObjectAVLTreeMap.headMap(char to)
|
|
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> |
Char2ObjectRBTreeMap.headMap(char to)
|
|
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)
|
|
Char2ObjectSortedMap<V> |
Char2ObjectSortedMap.headMap(Character toKey)
Returns a view of the portion of this sorted map whose keys are strictly less than toKey . |
|
Char2ObjectSortedMap<V> |
Char2ObjectSortedMaps.EmptySortedMap.headMap(Character oto)
|
|
Char2ObjectSortedMap<V> |
Char2ObjectSortedMaps.Singleton.headMap(Character oto)
|
|
Char2ObjectSortedMap<V> |
Char2ObjectSortedMaps.SynchronizedSortedMap.headMap(Character to)
|
|
Char2ObjectSortedMap<V> |
Char2ObjectSortedMaps.UnmodifiableSortedMap.headMap(Character to)
|
|
Char2ObjectSortedMap<V> |
AbstractChar2ObjectSortedMap.headMap(Character to)
Delegates to the corresponding type-specific method. |
|
static
|
Char2ObjectSortedMaps.singleton(Character key,
V value)
Returns a type-specific immutable sorted map containing only the specified pair. |
|
static
|
Char2ObjectSortedMaps.singleton(Character key,
V value,
CharComparator comparator)
RETURNS a type-specific immutable sorted map containing only the specified pair. |
|
static
|
Char2ObjectSortedMaps.singleton(char key,
V value)
Returns a type-specific immutable sorted map containing only the specified pair. |
|
static
|
Char2ObjectSortedMaps.singleton(char key,
V value,
CharComparator comparator)
Returns a type-specific immutable sorted map containing only the specified pair. |
|
Char2ObjectSortedMap<V> |
Char2ObjectSortedMap.subMap(Character fromKey,
Character 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(Character ofrom,
Character oto)
|
|
Char2ObjectSortedMap<V> |
Char2ObjectSortedMaps.Singleton.subMap(Character ofrom,
Character oto)
|
|
Char2ObjectSortedMap<V> |
Char2ObjectSortedMaps.SynchronizedSortedMap.subMap(Character from,
Character to)
|
|
Char2ObjectSortedMap<V> |
Char2ObjectSortedMaps.UnmodifiableSortedMap.subMap(Character from,
Character to)
|
|
Char2ObjectSortedMap<V> |
AbstractChar2ObjectSortedMap.subMap(Character from,
Character to)
Delegates to the corresponding type-specific method. |
|
Char2ObjectSortedMap<V> |
Char2ObjectAVLTreeMap.subMap(char from,
char to)
|
|
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> |
Char2ObjectRBTreeMap.subMap(char from,
char to)
|
|
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)
|
|
static
|
Char2ObjectSortedMaps.synchronize(Char2ObjectSortedMap<V> m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map. |
|
static
|
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> |
Char2ObjectAVLTreeMap.tailMap(char from)
|
|
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> |
Char2ObjectRBTreeMap.tailMap(char from)
|
|
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)
|
|
Char2ObjectSortedMap<V> |
Char2ObjectSortedMap.tailMap(Character 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(Character ofrom)
|
|
Char2ObjectSortedMap<V> |
Char2ObjectSortedMaps.Singleton.tailMap(Character ofrom)
|
|
Char2ObjectSortedMap<V> |
Char2ObjectSortedMaps.SynchronizedSortedMap.tailMap(Character from)
|
|
Char2ObjectSortedMap<V> |
Char2ObjectSortedMaps.UnmodifiableSortedMap.tailMap(Character from)
|
|
Char2ObjectSortedMap<V> |
AbstractChar2ObjectSortedMap.tailMap(Character from)
Delegates to the corresponding type-specific method. |
|
static
|
Char2ObjectSortedMaps.unmodifiable(Char2ObjectSortedMap<V> m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map. |
Methods in it.unimi.dsi.fastutil.chars with parameters of type Char2ObjectSortedMap | ||
---|---|---|
static
|
Char2ObjectSortedMaps.synchronize(Char2ObjectSortedMap<V> m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map. |
|
static
|
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
|
Char2ObjectSortedMaps.unmodifiable(Char2ObjectSortedMap<V> m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map. |
Constructors in it.unimi.dsi.fastutil.chars with parameters of type Char2ObjectSortedMap | |
---|---|
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 ). |
|
Char2ObjectSortedMaps.SynchronizedSortedMap(Char2ObjectSortedMap<V> m)
|
|
Char2ObjectSortedMaps.SynchronizedSortedMap(Char2ObjectSortedMap<V> m,
Object sync)
|
|
Char2ObjectSortedMaps.UnmodifiableSortedMap(Char2ObjectSortedMap<V> m)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |