|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Long2ObjectSortedMap | |
---|---|
it.unimi.dsi.fastutil.longs | Provides type-specific classes for long elements or keys. |
Uses of Long2ObjectSortedMap in it.unimi.dsi.fastutil.longs |
---|
Classes in it.unimi.dsi.fastutil.longs that implement Long2ObjectSortedMap | |
---|---|
class |
AbstractLong2ObjectSortedMap<V>
An abstract class providing basic methods for sorted maps implementing a type-specific interface. |
class |
Long2ObjectAVLTreeMap<V>
A type-specific AVL tree map with a fast, small-footprint implementation. |
class |
Long2ObjectLinkedOpenHashMap<V>
A type-specific linked hash map with with a fast, small-footprint implementation. |
class |
Long2ObjectRBTreeMap<V>
A type-specific red-black tree map with a fast, small-footprint implementation. |
static class |
Long2ObjectSortedMaps.EmptySortedMap<V>
An immutable class representing an empty type-specific sorted map. |
static class |
Long2ObjectSortedMaps.Singleton<V>
An immutable class representing a type-specific singleton sorted map. |
static class |
Long2ObjectSortedMaps.SynchronizedSortedMap<V>
A synchronized wrapper class for sorted maps. |
static class |
Long2ObjectSortedMaps.UnmodifiableSortedMap<V>
An unmodifiable wrapper class for sorted maps. |
Fields in it.unimi.dsi.fastutil.longs declared as Long2ObjectSortedMap | |
---|---|
protected Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.SynchronizedSortedMap.sortedMap
|
protected Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.UnmodifiableSortedMap.sortedMap
|
Methods in it.unimi.dsi.fastutil.longs that return Long2ObjectSortedMap | ||
---|---|---|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.EmptySortedMap.headMap(long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.Singleton.headMap(long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.SynchronizedSortedMap.headMap(long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.UnmodifiableSortedMap.headMap(long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectLinkedOpenHashMap.headMap(long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectAVLTreeMap.headMap(long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMap.headMap(long toKey)
Returns a view of the portion of this sorted map whose keys are strictly less than toKey . |
|
Long2ObjectSortedMap<V> |
Long2ObjectRBTreeMap.headMap(long to)
|
|
Long2ObjectSortedMap<V> |
AbstractLong2ObjectSortedMap.headMap(Long to)
Delegates to the corresponding type-specific method. |
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.EmptySortedMap.headMap(Long oto)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.Singleton.headMap(Long oto)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.SynchronizedSortedMap.headMap(Long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.UnmodifiableSortedMap.headMap(Long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMap.headMap(Long toKey)
Returns a view of the portion of this sorted map whose keys are strictly less than toKey . |
|
static
|
Long2ObjectSortedMaps.singleton(long key,
V value)
Returns a type-specific immutable sorted map containing only the specified pair. |
|
static
|
Long2ObjectSortedMaps.singleton(Long key,
V value)
Returns a type-specific immutable sorted map containing only the specified pair. |
|
static
|
Long2ObjectSortedMaps.singleton(long key,
V value,
LongComparator comparator)
Returns a type-specific immutable sorted map containing only the specified pair. |
|
static
|
Long2ObjectSortedMaps.singleton(Long key,
V value,
LongComparator comparator)
RETURNS a type-specific immutable sorted map containing only the specified pair. |
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.EmptySortedMap.subMap(long from,
long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.Singleton.subMap(long from,
long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.SynchronizedSortedMap.subMap(long from,
long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.UnmodifiableSortedMap.subMap(long from,
long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectLinkedOpenHashMap.subMap(long from,
long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectAVLTreeMap.subMap(long from,
long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMap.subMap(long fromKey,
long toKey)
Returns a view of the portion of this sorted map whose keys range from fromKey , inclusive, to toKey , exclusive. |
|
Long2ObjectSortedMap<V> |
Long2ObjectRBTreeMap.subMap(long from,
long to)
|
|
Long2ObjectSortedMap<V> |
AbstractLong2ObjectSortedMap.subMap(Long from,
Long to)
Delegates to the corresponding type-specific method. |
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.EmptySortedMap.subMap(Long ofrom,
Long oto)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.Singleton.subMap(Long ofrom,
Long oto)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.SynchronizedSortedMap.subMap(Long from,
Long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.UnmodifiableSortedMap.subMap(Long from,
Long to)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMap.subMap(Long fromKey,
Long toKey)
Returns a view of the portion of this sorted map whose keys range from fromKey , inclusive, to toKey , exclusive. |
|
static
|
Long2ObjectSortedMaps.synchronize(Long2ObjectSortedMap<V> m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map. |
|
static
|
Long2ObjectSortedMaps.synchronize(Long2ObjectSortedMap<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. |
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.EmptySortedMap.tailMap(long from)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.Singleton.tailMap(long from)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.SynchronizedSortedMap.tailMap(long from)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.UnmodifiableSortedMap.tailMap(long from)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectLinkedOpenHashMap.tailMap(long from)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectAVLTreeMap.tailMap(long from)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMap.tailMap(long fromKey)
Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey . |
|
Long2ObjectSortedMap<V> |
Long2ObjectRBTreeMap.tailMap(long from)
|
|
Long2ObjectSortedMap<V> |
AbstractLong2ObjectSortedMap.tailMap(Long from)
Delegates to the corresponding type-specific method. |
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.EmptySortedMap.tailMap(Long ofrom)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.Singleton.tailMap(Long ofrom)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.SynchronizedSortedMap.tailMap(Long from)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMaps.UnmodifiableSortedMap.tailMap(Long from)
|
|
Long2ObjectSortedMap<V> |
Long2ObjectSortedMap.tailMap(Long fromKey)
Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey . |
|
static
|
Long2ObjectSortedMaps.unmodifiable(Long2ObjectSortedMap<V> m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map. |
Methods in it.unimi.dsi.fastutil.longs with parameters of type Long2ObjectSortedMap | ||
---|---|---|
static
|
Long2ObjectSortedMaps.synchronize(Long2ObjectSortedMap<V> m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map. |
|
static
|
Long2ObjectSortedMaps.synchronize(Long2ObjectSortedMap<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
|
Long2ObjectSortedMaps.unmodifiable(Long2ObjectSortedMap<V> m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map. |
Constructors in it.unimi.dsi.fastutil.longs with parameters of type Long2ObjectSortedMap | |
---|---|
Long2ObjectAVLTreeMap(Long2ObjectSortedMap<V> m)
Creates a new tree map copying a given sorted map (and its Comparator ). |
|
Long2ObjectRBTreeMap(Long2ObjectSortedMap<V> m)
Creates a new tree map copying a given sorted map (and its Comparator ). |
|
Long2ObjectSortedMaps.SynchronizedSortedMap(Long2ObjectSortedMap<V> m)
|
|
Long2ObjectSortedMaps.SynchronizedSortedMap(Long2ObjectSortedMap<V> m,
Object sync)
|
|
Long2ObjectSortedMaps.UnmodifiableSortedMap(Long2ObjectSortedMap<V> m)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |