Uses of Interface
org.eclipse.collections.api.map.primitive.MutableDoubleObjectMap
-
Packages that use MutableDoubleObjectMap Package Description org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces. -
-
Uses of MutableDoubleObjectMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableDoubleObjectMap Modifier and Type Method Description <V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. empty()
<T,V>
MutableDoubleObjectMap<V>MutableDoubleObjectMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anMutableDoubleObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. of()
default <V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. of(double key, V value)
default <V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. of(double key1, V value1, double key2, V value2)
default <V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. of(double key1, V value1, double key2, V value2, double key3, V value3)
default <V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. of(double key1, V value1, double key2, V value2, double key3, V value3, double key4, V value4)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. ofAll(DoubleObjectMap<? extends V> map)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. ofInitialCapacity(int capacity)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. with()
default <V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. with(double key, V value)
default <V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. with(double key1, V value1, double key2, V value2)
default <V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. with(double key1, V value1, double key2, V value2, double key3, V value3)
default <V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. with(double key1, V value1, double key2, V value2, double key3, V value3, double key4, V value4)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. withAll(DoubleObjectMap<? extends V> map)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactory. withInitialCapacity(int capacity)
-
Uses of MutableDoubleObjectMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableDoubleObjectMap Modifier and Type Method Description MutableDoubleObjectMap<V>
MutableDoubleObjectMap. asSynchronized()
Returns a synchronized view of this map, delegating all operations to this map but ensuring only one caller has access to the map at a time.MutableDoubleObjectMap<V>
MutableDoubleObjectMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableDoubleObjectMap<K>
MutableObjectDoubleMap. flipUniqueValues()
MutableDoubleObjectMap<V>
MutableDoubleObjectMap. reject(DoubleObjectPredicate<? super V> predicate)
MutableDoubleObjectMap<V>
MutableDoubleObjectMap. select(DoubleObjectPredicate<? super V> predicate)
MutableDoubleObjectMap<V>
MutableDoubleObjectMap. tap(Procedure<? super V> procedure)
default MutableDoubleObjectMap<V>
MutableDoubleObjectMap. withAllKeyValues(java.lang.Iterable<DoubleObjectPair<V>> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.MutableDoubleObjectMap<V>
MutableDoubleObjectMap. withKeyValue(double key, V value)
Associates a value with the specified key.MutableDoubleObjectMap<V>
MutableDoubleObjectMap. withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleObjectMap<V>
MutableDoubleObjectMap. withoutKey(double key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableDoubleObjectMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableDoubleObjectMap Modifier and Type Field Description private MutableDoubleObjectMap<V>
ImmutableDoubleObjectHashMap. delegate
-
Uses of MutableDoubleObjectMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableDoubleObjectMap Modifier and Type Class Description class
DoubleObjectHashMap<V>
This file was automatically generated from template file primitiveObjectHashMap.stg.class
SynchronizedDoubleObjectMap<V>
A synchronized view of aMutableDoubleObjectMap
.class
UnmodifiableDoubleObjectMap<V>
This file was automatically generated from template file unmodifiablePrimitiveObjectMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableDoubleObjectMap Modifier and Type Field Description private MutableDoubleObjectMap<V>
SynchronizedDoubleObjectMap. map
private MutableDoubleObjectMap<V>
UnmodifiableDoubleObjectMap. map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableDoubleObjectMap Modifier and Type Method Description MutableDoubleObjectMap<V>
DoubleObjectHashMap. asSynchronized()
MutableDoubleObjectMap<V>
SynchronizedDoubleObjectMap. asSynchronized()
MutableDoubleObjectMap<V>
UnmodifiableDoubleObjectMap. asSynchronized()
MutableDoubleObjectMap<V>
DoubleObjectHashMap. asUnmodifiable()
MutableDoubleObjectMap<V>
SynchronizedDoubleObjectMap. asUnmodifiable()
MutableDoubleObjectMap<V>
UnmodifiableDoubleObjectMap. asUnmodifiable()
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. empty()
MutableDoubleObjectMap<K>
ObjectDoubleHashMap. flipUniqueValues()
MutableDoubleObjectMap<K>
ObjectDoubleHashMapWithHashingStrategy. flipUniqueValues()
MutableDoubleObjectMap<K>
SynchronizedObjectDoubleMap. flipUniqueValues()
MutableDoubleObjectMap<K>
UnmodifiableObjectDoubleMap. flipUniqueValues()
<T,V>
MutableDoubleObjectMap<V>MutableDoubleObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. of()
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. of(double key, V value)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. of(double key1, V value1, double key2, V value2)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. of(double key1, V value1, double key2, V value2, double key3, V value3)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. of(double key1, V value1, double key2, V value2, double key3, V value3, double key4, V value4)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. ofAll(DoubleObjectMap<? extends V> map)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. ofInitialCapacity(int capacity)
MutableDoubleObjectMap<V>
SynchronizedDoubleObjectMap. reject(DoubleObjectPredicate<? super V> predicate)
MutableDoubleObjectMap<V>
UnmodifiableDoubleObjectMap. reject(DoubleObjectPredicate<? super V> predicate)
MutableDoubleObjectMap<V>
SynchronizedDoubleObjectMap. select(DoubleObjectPredicate<? super V> predicate)
MutableDoubleObjectMap<V>
UnmodifiableDoubleObjectMap. select(DoubleObjectPredicate<? super V> predicate)
MutableDoubleObjectMap<V>
SynchronizedDoubleObjectMap. tap(Procedure<? super V> procedure)
MutableDoubleObjectMap<V>
UnmodifiableDoubleObjectMap. tap(Procedure<? super V> procedure)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. with()
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. with(double key, V value)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. with(double key1, V value1, double key2, V value2)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. with(double key1, V value1, double key2, V value2, double key3, V value3)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. with(double key1, V value1, double key2, V value2, double key3, V value3, double key4, V value4)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. withAll(DoubleObjectMap<? extends V> map)
<V> MutableDoubleObjectMap<V>
MutableDoubleObjectMapFactoryImpl. withInitialCapacity(int capacity)
MutableDoubleObjectMap<V>
SynchronizedDoubleObjectMap. withKeyValue(double key, V value)
MutableDoubleObjectMap<V>
UnmodifiableDoubleObjectMap. withKeyValue(double key, V value)
MutableDoubleObjectMap<V>
DoubleObjectHashMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleObjectMap<V>
SynchronizedDoubleObjectMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleObjectMap<V>
UnmodifiableDoubleObjectMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleObjectMap<V>
DoubleObjectHashMap. withoutKey(double key)
MutableDoubleObjectMap<V>
SynchronizedDoubleObjectMap. withoutKey(double key)
MutableDoubleObjectMap<V>
UnmodifiableDoubleObjectMap. withoutKey(double key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableDoubleObjectMap Constructor Description SynchronizedDoubleObjectMap(MutableDoubleObjectMap<V> map)
SynchronizedDoubleObjectMap(MutableDoubleObjectMap<V> map, java.lang.Object newLock)
UnmodifiableDoubleObjectMap(MutableDoubleObjectMap<V> map)
-