Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectCharMap
Packages that use MutableObjectCharMap
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 MutableObjectCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableObjectCharMapModifier and TypeMethodDescription<K> MutableObjectCharMap<K>MutableObjectCharHashingStrategyMapFactory.empty(HashingStrategy<? super K> hashingStrategy) <K> MutableObjectCharMap<K>MutableObjectCharMapFactory.empty()<T,K> MutableObjectCharMap<K> MutableObjectCharMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableObjectCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<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(). but takes in an initial capacity<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(). but takes in an initial capacity -
Uses of MutableObjectCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableObjectCharMapModifier and TypeMethodDescriptionMutableObjectCharMap.asSynchronized()MutableObjectCharMap.asUnmodifiable()MutableCharObjectMap.flipUniqueValues()MutableObjectCharMap.reject(ObjectCharPredicate<? super K> predicate) MutableObjectCharMap.select(ObjectCharPredicate<? super K> predicate) default MutableObjectCharMap<K>MutableObjectCharMap.tap(CharProcedure procedure) default MutableObjectCharMap<K>MutableObjectCharMap.withAllKeyValues(Iterable<ObjectCharPair<K>> keyValuePairs) MutableObjectCharMap.withKeyValue(K key, char value) Associates a value with the specified key.MutableObjectCharMap.withoutAllKeys(Iterable<? extends K> keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectCharMap.withoutKey(K key) Removes the mapping associated with the key, if one exists, from this map.