| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.objects |
Provides type-specific classes for object elements or keys.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
Object2ObjectSortedMap<K,V>
A type-specific
SortedMap; provides some additional methods that use polymorphism to avoid (un)boxing. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractObject2ObjectMap<K,V>
An abstract class providing basic methods for maps implementing a type-specific interface.
|
class |
AbstractObject2ObjectSortedMap<K,V>
An abstract class providing basic methods for sorted maps implementing a type-specific interface.
|
class |
Object2ObjectArrayMap<K,V>
A simple, brute-force implementation of a map based on two parallel backing arrays.
|
class |
Object2ObjectAVLTreeMap<K,V>
A type-specific AVL tree map with a fast, small-footprint implementation.
|
class |
Object2ObjectLinkedOpenCustomHashMap<K,V>
A type-specific linked hash map with with a fast, small-footprint implementation.
|
class |
Object2ObjectLinkedOpenHashMap<K,V>
A type-specific linked hash map with with a fast, small-footprint implementation.
|
static class |
Object2ObjectMaps.EmptyMap<K,V>
An immutable class representing an empty type-specific map.
|
static class |
Object2ObjectMaps.Singleton<K,V>
An immutable class representing a type-specific singleton map.
|
static class |
Object2ObjectMaps.SynchronizedMap<K,V>
A synchronized wrapper class for maps.
|
static class |
Object2ObjectMaps.UnmodifiableMap<K,V>
An unmodifiable wrapper class for maps.
|
class |
Object2ObjectOpenCustomHashMap<K,V>
A type-specific hash map with a fast, small-footprint implementation whose hashing strategy
is specified at creation time.
|
class |
Object2ObjectOpenHashMap<K,V>
A type-specific hash map with a fast, small-footprint implementation.
|
class |
Object2ObjectRBTreeMap<K,V>
A type-specific red-black tree map with a fast, small-footprint implementation.
|
static class |
Object2ObjectSortedMaps.EmptySortedMap<K,V>
An immutable class representing an empty type-specific sorted map.
|
static class |
Object2ObjectSortedMaps.Singleton<K,V>
An immutable class representing a type-specific singleton sorted map.
|
static class |
Object2ObjectSortedMaps.SynchronizedSortedMap<K,V>
A synchronized wrapper class for sorted maps.
|
static class |
Object2ObjectSortedMaps.UnmodifiableSortedMap<K,V>
An unmodifiable wrapper class for sorted maps.
|
| Modifier and Type | Field and Description |
|---|---|
protected Object2ObjectMap<K,V> |
AbstractObject2ObjectMap.BasicEntrySet.map |
protected Object2ObjectMap<K,V> |
Object2ObjectMaps.SynchronizedMap.map |
protected Object2ObjectMap<K,V> |
Object2ObjectMaps.UnmodifiableMap.map |
| Modifier and Type | Method and Description |
|---|---|
static <K,V> Object2ObjectMap<K,V> |
Object2ObjectMaps.emptyMap()
Returns an empty map (immutable).
|
static <K,V> Object2ObjectMap<K,V> |
Object2ObjectMaps.singleton(K key,
V value)
Returns a type-specific immutable map containing only the specified pair.
|
static <K,V> Object2ObjectMap<K,V> |
Object2ObjectMaps.synchronize(Object2ObjectMap<K,V> m)
Returns a synchronized type-specific map backed by the given type-specific map.
|
static <K,V> Object2ObjectMap<K,V> |
Object2ObjectMaps.synchronize(Object2ObjectMap<K,V> m,
Object sync)
Returns a synchronized type-specific map backed by the given type-specific map, using an assigned object to synchronize.
|
static <K,V> Object2ObjectMap<K,V> |
Object2ObjectMaps.unmodifiable(Object2ObjectMap<K,V> m)
Returns an unmodifiable type-specific map backed by the given type-specific map.
|
| Modifier and Type | Method and Description |
|---|---|
static <K,V> void |
Object2ObjectMaps.fastForEach(Object2ObjectMap<K,V> map,
Consumer<? super Object2ObjectMap.Entry<K,V>> consumer)
|
static <K,V> ObjectIterable<Object2ObjectMap.Entry<K,V>> |
Object2ObjectMaps.fastIterable(Object2ObjectMap<K,V> map)
|
static <K,V> ObjectIterator<Object2ObjectMap.Entry<K,V>> |
Object2ObjectMaps.fastIterator(Object2ObjectMap<K,V> map)
|
static <K,V> Object2ObjectMap<K,V> |
Object2ObjectMaps.synchronize(Object2ObjectMap<K,V> m)
Returns a synchronized type-specific map backed by the given type-specific map.
|
static <K,V> Object2ObjectMap<K,V> |
Object2ObjectMaps.synchronize(Object2ObjectMap<K,V> m,
Object sync)
Returns a synchronized type-specific map backed by the given type-specific map, using an assigned object to synchronize.
|
static <K,V> Object2ObjectMap<K,V> |
Object2ObjectMaps.unmodifiable(Object2ObjectMap<K,V> m)
Returns an unmodifiable type-specific map backed by the given type-specific map.
|
| Constructor and Description |
|---|
BasicEntrySet(Object2ObjectMap<K,V> map) |
Object2ObjectArrayMap(Object2ObjectMap<K,V> m)
Creates a new empty array map copying the entries of a given map.
|
Object2ObjectAVLTreeMap(Object2ObjectMap<? extends K,? extends V> m)
Creates a new tree map copying a given map.
|
Object2ObjectLinkedOpenCustomHashMap(Object2ObjectMap<K,V> m,
float f,
Hash.Strategy<? super K> strategy)
Creates a new hash map copying a given type-specific one.
|
Object2ObjectLinkedOpenCustomHashMap(Object2ObjectMap<K,V> m,
Hash.Strategy<? super K> strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Object2ObjectLinkedOpenHashMap(Object2ObjectMap<K,V> m)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Object2ObjectLinkedOpenHashMap(Object2ObjectMap<K,V> m,
float f)
Creates a new hash map copying a given type-specific one.
|
Object2ObjectOpenCustomHashMap(Object2ObjectMap<K,V> m,
float f,
Hash.Strategy<? super K> strategy)
Creates a new hash map copying a given type-specific one.
|
Object2ObjectOpenCustomHashMap(Object2ObjectMap<K,V> m,
Hash.Strategy<? super K> strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Object2ObjectOpenHashMap(Object2ObjectMap<K,V> m)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Object2ObjectOpenHashMap(Object2ObjectMap<K,V> m,
float f)
Creates a new hash map copying a given type-specific one.
|
Object2ObjectRBTreeMap(Object2ObjectMap<? extends K,? extends V> m)
Creates a new tree map copying a given map.
|
SynchronizedMap(Object2ObjectMap<K,V> m) |
SynchronizedMap(Object2ObjectMap<K,V> m,
Object sync) |
UnmodifiableMap(Object2ObjectMap<K,V> m) |
Copyright © 2020. All rights reserved.