Uses of Interface
org.eclipse.collections.api.map.primitive.MutableCharCharMap
Packages that use MutableCharCharMap
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.
-
Uses of MutableCharCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableCharCharMapModifier and TypeMethodDescriptionMutableCharCharMapFactory.empty()MutableCharCharMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableCharCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharCharMapFactory.of()Same asMutableCharCharMapFactory.empty().default MutableCharCharMapMutableCharCharMapFactory.of(char key, char value) default MutableCharCharMapMutableCharCharMapFactory.of(char key1, char value1, char key2, char value2) default MutableCharCharMapMutableCharCharMapFactory.of(char key1, char value1, char key2, char value2, char key3, char value3) default MutableCharCharMapMutableCharCharMapFactory.of(char key1, char value1, char key2, char value2, char key3, char value3, char key4, char value4) MutableCharCharMapFactory.ofAll(CharCharMap map) MutableCharCharMapFactory.ofInitialCapacity(int capacity) Same asMutableCharCharMapFactory.empty(). but takes in an initial capacityMutableCharCharMapFactory.with()Same asMutableCharCharMapFactory.empty().default MutableCharCharMapMutableCharCharMapFactory.with(char key, char value) default MutableCharCharMapMutableCharCharMapFactory.with(char key1, char value1, char key2, char value2) default MutableCharCharMapMutableCharCharMapFactory.with(char key1, char value1, char key2, char value2, char key3, char value3) default MutableCharCharMapMutableCharCharMapFactory.with(char key1, char value1, char key2, char value2, char key3, char value3, char key4, char value4) MutableCharCharMapFactory.withAll(CharCharMap map) MutableCharCharMapFactory.withInitialCapacity(int capacity) Same asMutableCharCharMapFactory.empty(). but takes in an initial capacity -
Uses of MutableCharCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharCharMapModifier and TypeMethodDescriptionMutableCharCharMap.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.MutableCharCharMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableCharCharMap.flipUniqueValues()MutableCharCharMap.reject(CharCharPredicate predicate) MutableCharCharMap.select(CharCharPredicate predicate) default MutableCharCharMapMutableCharCharMap.withAllKeyValues(Iterable<CharCharPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableCharCharMap.withKeyValue(char key, char value) Associates a value with the specified key.MutableCharCharMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharCharMap.withoutKey(char key) Removes the mapping associated with the key, if one exists, from this map.