| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.objects |
Provides type-specific classes for object elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractObject2BooleanSortedMap<K>
An abstract class providing basic methods for sorted maps implementing a type-specific interface.
|
class |
Object2BooleanAVLTreeMap<K>
A type-specific AVL tree map with a fast, small-footprint implementation.
|
class |
Object2BooleanLinkedOpenCustomHashMap<K>
A type-specific linked hash map with with a fast, small-footprint implementation.
|
class |
Object2BooleanLinkedOpenHashMap<K>
A type-specific linked hash map with with a fast, small-footprint implementation.
|
class |
Object2BooleanRBTreeMap<K>
A type-specific red-black tree map with a fast, small-footprint implementation.
|
static class |
Object2BooleanSortedMaps.EmptySortedMap<K>
An immutable class representing an empty type-specific sorted map.
|
static class |
Object2BooleanSortedMaps.Singleton<K>
An immutable class representing a type-specific singleton sorted map.
|
static class |
Object2BooleanSortedMaps.SynchronizedSortedMap<K>
A synchronized wrapper class for sorted maps.
|
static class |
Object2BooleanSortedMaps.UnmodifiableSortedMap<K>
An unmodifiable wrapper class for sorted maps.
|
| Modifier and Type | Field and Description |
|---|---|
protected Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.SynchronizedSortedMap.sortedMap |
protected Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.UnmodifiableSortedMap.sortedMap |
| Modifier and Type | Method and Description |
|---|---|
static <K> Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.emptyMap()
Returns an empty sorted map (immutable).
|
Object2BooleanSortedMap<K> |
Object2BooleanRBTreeMap.headMap(K to) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.EmptySortedMap.headMap(K to) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.Singleton.headMap(K to) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.SynchronizedSortedMap.headMap(K to) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.UnmodifiableSortedMap.headMap(K to) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMap.headMap(K toKey)
Returns a view of the portion of this sorted map whose keys are strictly less than
toKey. |
Object2BooleanSortedMap<K> |
Object2BooleanLinkedOpenCustomHashMap.headMap(K to)
Returns a view of the portion of this sorted map whose keys are strictly less than
toKey. |
Object2BooleanSortedMap<K> |
Object2BooleanLinkedOpenHashMap.headMap(K to)
Returns a view of the portion of this sorted map whose keys are strictly less than
toKey. |
Object2BooleanSortedMap<K> |
Object2BooleanAVLTreeMap.headMap(K to) |
static <K> Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.singleton(K key,
boolean value)
Returns a type-specific immutable sorted map containing only the specified pair.
|
static <K> Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.singleton(K key,
Boolean value)
Returns a type-specific immutable sorted map containing only the specified pair.
|
static <K> Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.singleton(K key,
boolean value,
Comparator<? super K> comparator)
Returns a type-specific immutable sorted map containing only the specified pair.
|
static <K> Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.singleton(K key,
Boolean value,
Comparator<? super K> comparator)
RETURNS a type-specific immutable sorted map containing only the specified pair.
|
Object2BooleanSortedMap<K> |
Object2BooleanRBTreeMap.subMap(K from,
K to) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.EmptySortedMap.subMap(K from,
K to) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.Singleton.subMap(K from,
K to) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.SynchronizedSortedMap.subMap(K from,
K to) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.UnmodifiableSortedMap.subMap(K from,
K to) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMap.subMap(K fromKey,
K toKey)
Returns a view of the portion of this sorted map whose keys range from
fromKey, inclusive, to toKey, exclusive. |
Object2BooleanSortedMap<K> |
Object2BooleanLinkedOpenCustomHashMap.subMap(K from,
K to)
Returns a view of the portion of this sorted map whose keys range from
fromKey, inclusive, to toKey, exclusive. |
Object2BooleanSortedMap<K> |
Object2BooleanLinkedOpenHashMap.subMap(K from,
K to)
Returns a view of the portion of this sorted map whose keys range from
fromKey, inclusive, to toKey, exclusive. |
Object2BooleanSortedMap<K> |
Object2BooleanAVLTreeMap.subMap(K from,
K to) |
static <K> Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.synchronize(Object2BooleanSortedMap<K> m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
|
static <K> Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.synchronize(Object2BooleanSortedMap<K> m,
Object sync)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
|
Object2BooleanSortedMap<K> |
Object2BooleanRBTreeMap.tailMap(K from) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.EmptySortedMap.tailMap(K from) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.Singleton.tailMap(K from) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.SynchronizedSortedMap.tailMap(K from) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.UnmodifiableSortedMap.tailMap(K from) |
Object2BooleanSortedMap<K> |
Object2BooleanSortedMap.tailMap(K fromKey)
Returns a view of the portion of this sorted map whose keys are greater than or equal to
fromKey. |
Object2BooleanSortedMap<K> |
Object2BooleanLinkedOpenCustomHashMap.tailMap(K from)
Returns a view of the portion of this sorted map whose keys are greater than or equal to
fromKey. |
Object2BooleanSortedMap<K> |
Object2BooleanLinkedOpenHashMap.tailMap(K from)
Returns a view of the portion of this sorted map whose keys are greater than or equal to
fromKey. |
Object2BooleanSortedMap<K> |
Object2BooleanAVLTreeMap.tailMap(K from) |
static <K> Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.unmodifiable(Object2BooleanSortedMap<K> m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
|
| Modifier and Type | Method and Description |
|---|---|
static <K> ObjectBidirectionalIterable<Object2BooleanMap.Entry<K>> |
Object2BooleanSortedMaps.fastIterable(Object2BooleanSortedMap<K> map)
|
static <K> ObjectBidirectionalIterator<Object2BooleanMap.Entry<K>> |
Object2BooleanSortedMaps.fastIterator(Object2BooleanSortedMap<K> map)
|
static <K> Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.synchronize(Object2BooleanSortedMap<K> m)
Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
|
static <K> Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.synchronize(Object2BooleanSortedMap<K> 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 <K> Object2BooleanSortedMap<K> |
Object2BooleanSortedMaps.unmodifiable(Object2BooleanSortedMap<K> m)
Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
|
| Constructor and Description |
|---|
Object2BooleanAVLTreeMap(Object2BooleanSortedMap<K> m)
Creates a new tree map copying a given sorted map (and its
Comparator). |
Object2BooleanRBTreeMap(Object2BooleanSortedMap<K> m)
Creates a new tree map copying a given sorted map (and its
Comparator). |
SynchronizedSortedMap(Object2BooleanSortedMap<K> m) |
SynchronizedSortedMap(Object2BooleanSortedMap<K> m,
Object sync) |
UnmodifiableSortedMap(Object2BooleanSortedMap<K> m) |
Copyright © 2020. All rights reserved.