Uses of Interface
org.eclipse.collections.api.map.primitive.MutableCharBooleanMap
Packages that use MutableCharBooleanMap
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 MutableCharBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableCharBooleanMapModifier and TypeMethodDescriptionMutableCharBooleanMapFactory.empty()
MutableCharBooleanMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharBooleanMapFactory.of()
Same asMutableCharBooleanMapFactory.empty()
.default MutableCharBooleanMap
MutableCharBooleanMapFactory.of
(char key, boolean value) default MutableCharBooleanMap
MutableCharBooleanMapFactory.of
(char key1, boolean value1, char key2, boolean value2) default MutableCharBooleanMap
MutableCharBooleanMapFactory.of
(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3) default MutableCharBooleanMap
MutableCharBooleanMapFactory.of
(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3, char key4, boolean value4) MutableCharBooleanMapFactory.ofAll
(CharBooleanMap map) MutableCharBooleanMapFactory.ofInitialCapacity
(int capacity) Same asMutableCharBooleanMapFactory.empty()
.MutableCharBooleanMapFactory.with()
Same asMutableCharBooleanMapFactory.empty()
.default MutableCharBooleanMap
MutableCharBooleanMapFactory.with
(char key, boolean value) default MutableCharBooleanMap
MutableCharBooleanMapFactory.with
(char key1, boolean value1, char key2, boolean value2) default MutableCharBooleanMap
MutableCharBooleanMapFactory.with
(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3) default MutableCharBooleanMap
MutableCharBooleanMapFactory.with
(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3, char key4, boolean value4) MutableCharBooleanMapFactory.withAll
(CharBooleanMap map) MutableCharBooleanMapFactory.withInitialCapacity
(int capacity) Same asMutableCharBooleanMapFactory.empty()
. -
Uses of MutableCharBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharBooleanMapModifier and TypeMethodDescriptionMutableCharBooleanMap.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.MutableCharBooleanMap.asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableCharBooleanMap.reject
(CharBooleanPredicate predicate) MutableCharBooleanMap.select
(CharBooleanPredicate predicate) default MutableCharBooleanMap
MutableCharBooleanMap.withAllKeyValues
(Iterable<CharBooleanPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableCharBooleanMap.withKeyValue
(char key, boolean value) Associates a value with the specified key.MutableCharBooleanMap.withoutAllKeys
(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharBooleanMap.withoutKey
(char key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableCharBooleanMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableCharBooleanMapModifier and TypeClassDescriptionclass
This file was automatically generated from template file primitiveBooleanHashMap.stg.class
A synchronized view of aMutableCharBooleanMap
.class
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharBooleanMapModifier and TypeMethodDescriptionCharBooleanHashMap.asSynchronized()
SynchronizedCharBooleanMap.asSynchronized()
UnmodifiableCharBooleanMap.asSynchronized()
CharBooleanHashMap.asUnmodifiable()
SynchronizedCharBooleanMap.asUnmodifiable()
UnmodifiableCharBooleanMap.asUnmodifiable()
MutableCharBooleanMapFactoryImpl.empty()
MutableCharBooleanMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) MutableCharBooleanMapFactoryImpl.of()
MutableCharBooleanMapFactoryImpl.of
(char key, boolean value) MutableCharBooleanMapFactoryImpl.of
(char key1, boolean value1, char key2, boolean value2) MutableCharBooleanMapFactoryImpl.of
(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3) MutableCharBooleanMapFactoryImpl.of
(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3, char key4, boolean value4) MutableCharBooleanMapFactoryImpl.ofAll
(CharBooleanMap map) MutableCharBooleanMapFactoryImpl.ofInitialCapacity
(int capacity) SynchronizedCharBooleanMap.reject
(CharBooleanPredicate predicate) UnmodifiableCharBooleanMap.reject
(CharBooleanPredicate predicate) SynchronizedCharBooleanMap.select
(CharBooleanPredicate predicate) UnmodifiableCharBooleanMap.select
(CharBooleanPredicate predicate) MutableCharBooleanMapFactoryImpl.with()
MutableCharBooleanMapFactoryImpl.with
(char key, boolean value) MutableCharBooleanMapFactoryImpl.with
(char key1, boolean value1, char key2, boolean value2) MutableCharBooleanMapFactoryImpl.with
(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3) MutableCharBooleanMapFactoryImpl.with
(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3, char key4, boolean value4) MutableCharBooleanMapFactoryImpl.withAll
(CharBooleanMap map) MutableCharBooleanMapFactoryImpl.withInitialCapacity
(int capacity) SynchronizedCharBooleanMap.withKeyValue
(char key, boolean value) UnmodifiableCharBooleanMap.withKeyValue
(char key, boolean value) SynchronizedCharBooleanMap.withoutAllKeys
(CharIterable keys) UnmodifiableCharBooleanMap.withoutAllKeys
(CharIterable keys) SynchronizedCharBooleanMap.withoutKey
(char key) UnmodifiableCharBooleanMap.withoutKey
(char key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableCharBooleanMapModifierConstructorDescriptionSynchronizedCharBooleanMap
(MutableCharBooleanMap map, Object newLock)