Uses of Interface
org.eclipse.collections.api.map.primitive.MutableCharIntMap
-
Packages that use MutableCharIntMap 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 MutableCharIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableCharIntMap Modifier and Type Method Description MutableCharIntMap
MutableCharIntMapFactory. empty()
<T> MutableCharIntMap
MutableCharIntMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableCharIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharIntMap
MutableCharIntMapFactory. of()
Same asMutableCharIntMapFactory.empty()
.default MutableCharIntMap
MutableCharIntMapFactory. of(char key, int value)
default MutableCharIntMap
MutableCharIntMapFactory. of(char key1, int value1, char key2, int value2)
default MutableCharIntMap
MutableCharIntMapFactory. of(char key1, int value1, char key2, int value2, char key3, int value3)
default MutableCharIntMap
MutableCharIntMapFactory. of(char key1, int value1, char key2, int value2, char key3, int value3, char key4, int value4)
MutableCharIntMap
MutableCharIntMapFactory. ofAll(CharIntMap map)
MutableCharIntMap
MutableCharIntMapFactory. ofInitialCapacity(int capacity)
Same asMutableCharIntMapFactory.empty()
.MutableCharIntMap
MutableCharIntMapFactory. with()
Same asMutableCharIntMapFactory.empty()
.default MutableCharIntMap
MutableCharIntMapFactory. with(char key, int value)
default MutableCharIntMap
MutableCharIntMapFactory. with(char key1, int value1, char key2, int value2)
default MutableCharIntMap
MutableCharIntMapFactory. with(char key1, int value1, char key2, int value2, char key3, int value3)
default MutableCharIntMap
MutableCharIntMapFactory. with(char key1, int value1, char key2, int value2, char key3, int value3, char key4, int value4)
MutableCharIntMap
MutableCharIntMapFactory. withAll(CharIntMap map)
MutableCharIntMap
MutableCharIntMapFactory. withInitialCapacity(int capacity)
Same asMutableCharIntMapFactory.empty()
. -
Uses of MutableCharIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharIntMap Modifier and Type Method Description MutableCharIntMap
MutableCharIntMap. 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.MutableCharIntMap
MutableCharIntMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableCharIntMap
MutableIntCharMap. flipUniqueValues()
MutableCharIntMap
MutableCharIntMap. reject(CharIntPredicate predicate)
MutableCharIntMap
MutableCharIntMap. select(CharIntPredicate predicate)
default MutableCharIntMap
MutableCharIntMap. withAllKeyValues(java.lang.Iterable<CharIntPair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.MutableCharIntMap
MutableCharIntMap. withKeyValue(char key, int value)
Associates a value with the specified key.MutableCharIntMap
MutableCharIntMap. withoutAllKeys(CharIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableCharIntMap
MutableCharIntMap. withoutKey(char key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableCharIntMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableCharIntMap Modifier and Type Field Description private MutableCharIntMap
ImmutableCharIntHashMap. delegate
-
Uses of MutableCharIntMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableCharIntMap Modifier and Type Class Description class
CharIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
SynchronizedCharIntMap
A synchronized view of aMutableCharIntMap
.class
UnmodifiableCharIntMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableCharIntMap Modifier and Type Field Description private MutableCharIntMap
SynchronizedCharIntMap. map
private MutableCharIntMap
UnmodifiableCharIntMap. map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharIntMap Modifier and Type Method Description MutableCharIntMap
CharIntHashMap. asSynchronized()
MutableCharIntMap
SynchronizedCharIntMap. asSynchronized()
MutableCharIntMap
UnmodifiableCharIntMap. asSynchronized()
MutableCharIntMap
CharIntHashMap. asUnmodifiable()
MutableCharIntMap
SynchronizedCharIntMap. asUnmodifiable()
MutableCharIntMap
UnmodifiableCharIntMap. asUnmodifiable()
MutableCharIntMap
MutableCharIntMapFactoryImpl. empty()
MutableCharIntMap
IntCharHashMap. flipUniqueValues()
MutableCharIntMap
SynchronizedIntCharMap. flipUniqueValues()
MutableCharIntMap
UnmodifiableIntCharMap. flipUniqueValues()
<T> MutableCharIntMap
MutableCharIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
MutableCharIntMap
MutableCharIntMapFactoryImpl. of()
MutableCharIntMap
MutableCharIntMapFactoryImpl. of(char key, int value)
MutableCharIntMap
MutableCharIntMapFactoryImpl. of(char key1, int value1, char key2, int value2)
MutableCharIntMap
MutableCharIntMapFactoryImpl. of(char key1, int value1, char key2, int value2, char key3, int value3)
MutableCharIntMap
MutableCharIntMapFactoryImpl. of(char key1, int value1, char key2, int value2, char key3, int value3, char key4, int value4)
MutableCharIntMap
MutableCharIntMapFactoryImpl. ofAll(CharIntMap map)
MutableCharIntMap
MutableCharIntMapFactoryImpl. ofInitialCapacity(int capacity)
MutableCharIntMap
SynchronizedCharIntMap. reject(CharIntPredicate predicate)
MutableCharIntMap
UnmodifiableCharIntMap. reject(CharIntPredicate predicate)
MutableCharIntMap
SynchronizedCharIntMap. select(CharIntPredicate predicate)
MutableCharIntMap
UnmodifiableCharIntMap. select(CharIntPredicate predicate)
MutableCharIntMap
MutableCharIntMapFactoryImpl. with()
MutableCharIntMap
MutableCharIntMapFactoryImpl. with(char key, int value)
MutableCharIntMap
MutableCharIntMapFactoryImpl. with(char key1, int value1, char key2, int value2)
MutableCharIntMap
MutableCharIntMapFactoryImpl. with(char key1, int value1, char key2, int value2, char key3, int value3)
MutableCharIntMap
MutableCharIntMapFactoryImpl. with(char key1, int value1, char key2, int value2, char key3, int value3, char key4, int value4)
MutableCharIntMap
MutableCharIntMapFactoryImpl. withAll(CharIntMap map)
MutableCharIntMap
MutableCharIntMapFactoryImpl. withInitialCapacity(int capacity)
MutableCharIntMap
SynchronizedCharIntMap. withKeyValue(char key, int value)
MutableCharIntMap
UnmodifiableCharIntMap. withKeyValue(char key, int value)
MutableCharIntMap
SynchronizedCharIntMap. withoutAllKeys(CharIterable keys)
MutableCharIntMap
UnmodifiableCharIntMap. withoutAllKeys(CharIterable keys)
MutableCharIntMap
SynchronizedCharIntMap. withoutKey(char key)
MutableCharIntMap
UnmodifiableCharIntMap. withoutKey(char key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableCharIntMap Constructor Description SynchronizedCharIntMap(MutableCharIntMap map)
SynchronizedCharIntMap(MutableCharIntMap map, java.lang.Object newLock)
UnmodifiableCharIntMap(MutableCharIntMap map)
-