Uses of Interface
org.eclipse.collections.api.map.primitive.MutableDoubleCharMap
-
Packages that use MutableDoubleCharMap 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 MutableDoubleCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableDoubleCharMap Modifier and Type Method Description MutableDoubleCharMap
MutableDoubleCharMapFactory. empty()
<T> MutableDoubleCharMap
MutableDoubleCharMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableDoubleCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableDoubleCharMap
MutableDoubleCharMapFactory. of()
Same asMutableDoubleCharMapFactory.empty()
.default MutableDoubleCharMap
MutableDoubleCharMapFactory. of(double key, char value)
default MutableDoubleCharMap
MutableDoubleCharMapFactory. of(double key1, char value1, double key2, char value2)
default MutableDoubleCharMap
MutableDoubleCharMapFactory. of(double key1, char value1, double key2, char value2, double key3, char value3)
default MutableDoubleCharMap
MutableDoubleCharMapFactory. of(double key1, char value1, double key2, char value2, double key3, char value3, double key4, char value4)
MutableDoubleCharMap
MutableDoubleCharMapFactory. ofAll(DoubleCharMap map)
MutableDoubleCharMap
MutableDoubleCharMapFactory. ofInitialCapacity(int capacity)
Same asMutableDoubleCharMapFactory.empty()
.MutableDoubleCharMap
MutableDoubleCharMapFactory. with()
Same asMutableDoubleCharMapFactory.empty()
.default MutableDoubleCharMap
MutableDoubleCharMapFactory. with(double key, char value)
default MutableDoubleCharMap
MutableDoubleCharMapFactory. with(double key1, char value1, double key2, char value2)
default MutableDoubleCharMap
MutableDoubleCharMapFactory. with(double key1, char value1, double key2, char value2, double key3, char value3)
default MutableDoubleCharMap
MutableDoubleCharMapFactory. with(double key1, char value1, double key2, char value2, double key3, char value3, double key4, char value4)
MutableDoubleCharMap
MutableDoubleCharMapFactory. withAll(DoubleCharMap map)
MutableDoubleCharMap
MutableDoubleCharMapFactory. withInitialCapacity(int capacity)
Same asMutableDoubleCharMapFactory.empty()
. -
Uses of MutableDoubleCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableDoubleCharMap Modifier and Type Method Description MutableDoubleCharMap
MutableDoubleCharMap. 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.MutableDoubleCharMap
MutableDoubleCharMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableDoubleCharMap
MutableCharDoubleMap. flipUniqueValues()
MutableDoubleCharMap
MutableDoubleCharMap. reject(DoubleCharPredicate predicate)
MutableDoubleCharMap
MutableDoubleCharMap. select(DoubleCharPredicate predicate)
default MutableDoubleCharMap
MutableDoubleCharMap. withAllKeyValues(java.lang.Iterable<DoubleCharPair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.MutableDoubleCharMap
MutableDoubleCharMap. withKeyValue(double key, char value)
Associates a value with the specified key.MutableDoubleCharMap
MutableDoubleCharMap. withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleCharMap
MutableDoubleCharMap. withoutKey(double key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableDoubleCharMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableDoubleCharMap Modifier and Type Field Description private MutableDoubleCharMap
ImmutableDoubleCharHashMap. delegate
-
Uses of MutableDoubleCharMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableDoubleCharMap Modifier and Type Class Description class
DoubleCharHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
SynchronizedDoubleCharMap
A synchronized view of aMutableDoubleCharMap
.class
UnmodifiableDoubleCharMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableDoubleCharMap Modifier and Type Field Description private MutableDoubleCharMap
SynchronizedDoubleCharMap. map
private MutableDoubleCharMap
UnmodifiableDoubleCharMap. map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableDoubleCharMap Modifier and Type Method Description MutableDoubleCharMap
DoubleCharHashMap. asSynchronized()
MutableDoubleCharMap
SynchronizedDoubleCharMap. asSynchronized()
MutableDoubleCharMap
UnmodifiableDoubleCharMap. asSynchronized()
MutableDoubleCharMap
DoubleCharHashMap. asUnmodifiable()
MutableDoubleCharMap
SynchronizedDoubleCharMap. asUnmodifiable()
MutableDoubleCharMap
UnmodifiableDoubleCharMap. asUnmodifiable()
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. empty()
MutableDoubleCharMap
CharDoubleHashMap. flipUniqueValues()
MutableDoubleCharMap
SynchronizedCharDoubleMap. flipUniqueValues()
MutableDoubleCharMap
UnmodifiableCharDoubleMap. flipUniqueValues()
<T> MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. of()
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. of(double key, char value)
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. of(double key1, char value1, double key2, char value2)
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. of(double key1, char value1, double key2, char value2, double key3, char value3)
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. of(double key1, char value1, double key2, char value2, double key3, char value3, double key4, char value4)
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. ofAll(DoubleCharMap map)
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. ofInitialCapacity(int capacity)
MutableDoubleCharMap
SynchronizedDoubleCharMap. reject(DoubleCharPredicate predicate)
MutableDoubleCharMap
UnmodifiableDoubleCharMap. reject(DoubleCharPredicate predicate)
MutableDoubleCharMap
SynchronizedDoubleCharMap. select(DoubleCharPredicate predicate)
MutableDoubleCharMap
UnmodifiableDoubleCharMap. select(DoubleCharPredicate predicate)
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. with()
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. with(double key, char value)
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. with(double key1, char value1, double key2, char value2)
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. with(double key1, char value1, double key2, char value2, double key3, char value3)
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. with(double key1, char value1, double key2, char value2, double key3, char value3, double key4, char value4)
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. withAll(DoubleCharMap map)
MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. withInitialCapacity(int capacity)
MutableDoubleCharMap
SynchronizedDoubleCharMap. withKeyValue(double key, char value)
MutableDoubleCharMap
UnmodifiableDoubleCharMap. withKeyValue(double key, char value)
MutableDoubleCharMap
SynchronizedDoubleCharMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleCharMap
UnmodifiableDoubleCharMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleCharMap
SynchronizedDoubleCharMap. withoutKey(double key)
MutableDoubleCharMap
UnmodifiableDoubleCharMap. withoutKey(double key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableDoubleCharMap Constructor Description SynchronizedDoubleCharMap(MutableDoubleCharMap map)
SynchronizedDoubleCharMap(MutableDoubleCharMap map, java.lang.Object newLock)
UnmodifiableDoubleCharMap(MutableDoubleCharMap map)
-