Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectCharMap
-
Packages that use MutableObjectCharMap 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 MutableObjectCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableObjectCharMap Modifier and Type Method Description <K> MutableObjectCharMap<K>
MutableObjectCharHashingStrategyMapFactory. empty(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. empty()
<T,K>
MutableObjectCharMap<K>MutableObjectCharMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableObjectCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> MutableObjectCharMap<K>
MutableObjectCharHashingStrategyMapFactory. of(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.<K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. of()
Same asMutableObjectCharMapFactory.empty()
.default <K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. of(K key, char value)
default <K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. of(K key1, char value1, K key2, char value2)
default <K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. of(K key1, char value1, K key2, char value2, K key3, char value3)
default <K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. of(K key1, char value1, K key2, char value2, K key3, char value3, K key4, char value4)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. ofAll(ObjectCharMap<? extends K> map)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. ofInitialCapacity(int capacity)
Same asMutableObjectCharMapFactory.empty()
.<K> MutableObjectCharMap<K>
MutableObjectCharHashingStrategyMapFactory. with(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.<K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. with()
Same asMutableObjectCharMapFactory.empty()
.default <K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. with(K key, char value)
default <K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. with(K key1, char value1, K key2, char value2)
default <K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. with(K key1, char value1, K key2, char value2, K key3, char value3)
default <K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. with(K key1, char value1, K key2, char value2, K key3, char value3, K key4, char value4)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. withAll(ObjectCharMap<? extends K> map)
<K> MutableObjectCharMap<K>
MutableObjectCharHashingStrategyMapFactory. withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)
Same as#empty()
but takes in an initial capacity<K> MutableObjectCharMap<K>
MutableObjectCharMapFactory. withInitialCapacity(int capacity)
Same asMutableObjectCharMapFactory.empty()
. -
Uses of MutableObjectCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableObjectCharMap Modifier and Type Method Description MutableObjectCharMap<K>
MutableObjectCharMap. asSynchronized()
MutableObjectCharMap<K>
MutableObjectCharMap. asUnmodifiable()
MutableObjectCharMap<V>
MutableCharObjectMap. flipUniqueValues()
MutableObjectCharMap<K>
MutableObjectCharMap. reject(ObjectCharPredicate<? super K> predicate)
MutableObjectCharMap<K>
MutableObjectCharMap. select(ObjectCharPredicate<? super K> predicate)
default MutableObjectCharMap<K>
MutableObjectCharMap. tap(CharProcedure procedure)
default MutableObjectCharMap<K>
MutableObjectCharMap. withAllKeyValues(java.lang.Iterable<ObjectCharPair<K>> keyValuePairs)
MutableObjectCharMap<K>
MutableObjectCharMap. withKeyValue(K key, char value)
Associates a value with the specified key.MutableObjectCharMap<K>
MutableObjectCharMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectCharMap<K>
MutableObjectCharMap. withoutKey(K key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableObjectCharMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableObjectCharMap Modifier and Type Field Description private MutableObjectCharMap<K>
ImmutableObjectCharHashMap. delegate
-
Uses of MutableObjectCharMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableObjectCharMap Modifier and Type Class Description class
ObjectCharHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.class
ObjectCharHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.class
SynchronizedObjectCharMap<K>
A synchronized view of aMutableObjectCharMap
.class
UnmodifiableObjectCharMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableObjectCharMap Modifier and Type Field Description private MutableObjectCharMap<K>
SynchronizedObjectCharMap. map
private MutableObjectCharMap<K>
UnmodifiableObjectCharMap. map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableObjectCharMap Modifier and Type Method Description MutableObjectCharMap<K>
ObjectCharHashMap. asSynchronized()
MutableObjectCharMap<K>
ObjectCharHashMapWithHashingStrategy. asSynchronized()
MutableObjectCharMap<K>
SynchronizedObjectCharMap. asSynchronized()
MutableObjectCharMap<K>
UnmodifiableObjectCharMap. asSynchronized()
MutableObjectCharMap<K>
ObjectCharHashMap. asUnmodifiable()
MutableObjectCharMap<K>
ObjectCharHashMapWithHashingStrategy. asUnmodifiable()
MutableObjectCharMap<K>
SynchronizedObjectCharMap. asUnmodifiable()
MutableObjectCharMap<K>
UnmodifiableObjectCharMap. asUnmodifiable()
<K> MutableObjectCharMap<K>
MutableObjectCharHashingStrategyMapFactoryImpl. empty(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. empty()
MutableObjectCharMap<V>
CharObjectHashMap. flipUniqueValues()
MutableObjectCharMap<V>
SynchronizedCharObjectMap. flipUniqueValues()
MutableObjectCharMap<V>
UnmodifiableCharObjectMap. flipUniqueValues()
<T,K>
MutableObjectCharMap<K>MutableObjectCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)
<K> MutableObjectCharMap<K>
MutableObjectCharHashingStrategyMapFactoryImpl. of(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. of()
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. of(K key, char value)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. of(K key1, char value1, K key2, char value2)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. of(K key1, char value1, K key2, char value2, K key3, char value3)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. of(K key1, char value1, K key2, char value2, K key3, char value3, K key4, char value4)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. ofAll(ObjectCharMap<? extends K> map)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. ofInitialCapacity(int capacity)
MutableObjectCharMap<K>
SynchronizedObjectCharMap. reject(ObjectCharPredicate<? super K> predicate)
MutableObjectCharMap<K>
UnmodifiableObjectCharMap. reject(ObjectCharPredicate<? super K> predicate)
MutableObjectCharMap<K>
SynchronizedObjectCharMap. select(ObjectCharPredicate<? super K> predicate)
MutableObjectCharMap<K>
UnmodifiableObjectCharMap. select(ObjectCharPredicate<? super K> predicate)
<K> MutableObjectCharMap<K>
MutableObjectCharHashingStrategyMapFactoryImpl. with(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. with()
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. with(K key, char value)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. with(K key1, char value1, K key2, char value2)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. with(K key1, char value1, K key2, char value2, K key3, char value3)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. with(K key1, char value1, K key2, char value2, K key3, char value3, K key4, char value4)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. withAll(ObjectCharMap<? extends K> map)
<K> MutableObjectCharMap<K>
MutableObjectCharHashingStrategyMapFactoryImpl. withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)
<K> MutableObjectCharMap<K>
MutableObjectCharMapFactoryImpl. withInitialCapacity(int capacity)
MutableObjectCharMap<K>
SynchronizedObjectCharMap. withKeyValue(K key, char value)
MutableObjectCharMap<K>
UnmodifiableObjectCharMap. withKeyValue(K key, char value)
MutableObjectCharMap<K>
SynchronizedObjectCharMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableObjectCharMap<K>
UnmodifiableObjectCharMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableObjectCharMap<K>
SynchronizedObjectCharMap. withoutKey(K key)
MutableObjectCharMap<K>
UnmodifiableObjectCharMap. withoutKey(K key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableObjectCharMap Constructor Description SynchronizedObjectCharMap(MutableObjectCharMap<K> map)
SynchronizedObjectCharMap(MutableObjectCharMap<K> map, java.lang.Object newLock)
UnmodifiableObjectCharMap(MutableObjectCharMap<K> map)
-