Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntCharMap
Packages that use MutableIntCharMap
Package
Description
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of MutableIntCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntCharMapModifier and TypeMethodDescriptionMutableIntCharMapFactory.empty()
MutableIntCharMapFactory.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableIntCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableIntCharMapFactory.of()
Same asMutableIntCharMapFactory.empty()
.default MutableIntCharMap
MutableIntCharMapFactory.of
(int key, char value) default MutableIntCharMap
MutableIntCharMapFactory.of
(int key1, char value1, int key2, char value2) default MutableIntCharMap
MutableIntCharMapFactory.of
(int key1, char value1, int key2, char value2, int key3, char value3) default MutableIntCharMap
MutableIntCharMapFactory.of
(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4) MutableIntCharMapFactory.ofAll
(IntCharMap map) MutableIntCharMapFactory.ofInitialCapacity
(int capacity) Same asMutableIntCharMapFactory.empty()
.MutableIntCharMapFactory.with()
Same asMutableIntCharMapFactory.empty()
.default MutableIntCharMap
MutableIntCharMapFactory.with
(int key, char value) default MutableIntCharMap
MutableIntCharMapFactory.with
(int key1, char value1, int key2, char value2) default MutableIntCharMap
MutableIntCharMapFactory.with
(int key1, char value1, int key2, char value2, int key3, char value3) default MutableIntCharMap
MutableIntCharMapFactory.with
(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4) MutableIntCharMapFactory.withAll
(IntCharMap map) MutableIntCharMapFactory.withInitialCapacity
(int capacity) Same asMutableIntCharMapFactory.empty()
. -
Uses of MutableIntCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntCharMapModifier and TypeMethodDescriptionMutableIntCharMap.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.MutableIntCharMap.asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableCharIntMap.flipUniqueValues()
MutableIntCharMap.reject
(IntCharPredicate predicate) MutableIntCharMap.select
(IntCharPredicate predicate) default MutableIntCharMap
MutableIntCharMap.withAllKeyValues
(Iterable<IntCharPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableIntCharMap.withKeyValue
(int key, char value) Associates a value with the specified key.MutableIntCharMap.withoutAllKeys
(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntCharMap.withoutKey
(int key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableIntCharMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableIntCharMapModifier and TypeClassDescriptionclass
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
A synchronized view of aMutableIntCharMap
.class
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntCharMapModifier and TypeMethodDescriptionIntCharHashMap.asSynchronized()
SynchronizedIntCharMap.asSynchronized()
UnmodifiableIntCharMap.asSynchronized()
IntCharHashMap.asUnmodifiable()
SynchronizedIntCharMap.asUnmodifiable()
UnmodifiableIntCharMap.asUnmodifiable()
MutableIntCharMapFactoryImpl.empty()
CharIntHashMap.flipUniqueValues()
SynchronizedCharIntMap.flipUniqueValues()
UnmodifiableCharIntMap.flipUniqueValues()
MutableIntCharMapFactoryImpl.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableIntCharMapFactoryImpl.of()
MutableIntCharMapFactoryImpl.of
(int key, char value) MutableIntCharMapFactoryImpl.of
(int key1, char value1, int key2, char value2) MutableIntCharMapFactoryImpl.of
(int key1, char value1, int key2, char value2, int key3, char value3) MutableIntCharMapFactoryImpl.of
(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4) MutableIntCharMapFactoryImpl.ofAll
(IntCharMap map) MutableIntCharMapFactoryImpl.ofInitialCapacity
(int capacity) SynchronizedIntCharMap.reject
(IntCharPredicate predicate) UnmodifiableIntCharMap.reject
(IntCharPredicate predicate) SynchronizedIntCharMap.select
(IntCharPredicate predicate) UnmodifiableIntCharMap.select
(IntCharPredicate predicate) MutableIntCharMapFactoryImpl.with()
MutableIntCharMapFactoryImpl.with
(int key, char value) MutableIntCharMapFactoryImpl.with
(int key1, char value1, int key2, char value2) MutableIntCharMapFactoryImpl.with
(int key1, char value1, int key2, char value2, int key3, char value3) MutableIntCharMapFactoryImpl.with
(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4) MutableIntCharMapFactoryImpl.withAll
(IntCharMap map) MutableIntCharMapFactoryImpl.withInitialCapacity
(int capacity) SynchronizedIntCharMap.withKeyValue
(int key, char value) UnmodifiableIntCharMap.withKeyValue
(int key, char value) SynchronizedIntCharMap.withoutAllKeys
(IntIterable keys) UnmodifiableIntCharMap.withoutAllKeys
(IntIterable keys) SynchronizedIntCharMap.withoutKey
(int key) UnmodifiableIntCharMap.withoutKey
(int key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableIntCharMap