Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectBooleanMap
Packages that use MutableObjectBooleanMap
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 MutableObjectBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableObjectBooleanMapModifier and TypeMethodDescription<K> MutableObjectBooleanMap<K>MutableObjectBooleanHashingStrategyMapFactory.empty(HashingStrategy<? super K> hashingStrategy) <K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.empty()<T,K> MutableObjectBooleanMap<K> MutableObjectBooleanMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableObjectBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> MutableObjectBooleanMap<K>MutableObjectBooleanHashingStrategyMapFactory.of(HashingStrategy<? super K> hashingStrategy) Same as#empty().<K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.of()default <K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.of(K key, boolean value) default <K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.of(K key1, boolean value1, K key2, boolean value2) default <K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.of(K key1, boolean value1, K key2, boolean value2, K key3, boolean value3) default <K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.of(K key1, boolean value1, K key2, boolean value2, K key3, boolean value3, K key4, boolean value4) <K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.ofAll(ObjectBooleanMap<? extends K> map) <K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.ofInitialCapacity(int capacity) Same asMutableObjectBooleanMapFactory.empty(). but takes in an initial capacity<K> MutableObjectBooleanMap<K>MutableObjectBooleanHashingStrategyMapFactory.with(HashingStrategy<? super K> hashingStrategy) Same as#empty().<K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.with()default <K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.with(K key, boolean value) default <K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.with(K key1, boolean value1, K key2, boolean value2) default <K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.with(K key1, boolean value1, K key2, boolean value2, K key3, boolean value3) default <K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.with(K key1, boolean value1, K key2, boolean value2, K key3, boolean value3, K key4, boolean value4) <K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.withAll(ObjectBooleanMap<? extends K> map) <K> MutableObjectBooleanMap<K>MutableObjectBooleanHashingStrategyMapFactory.withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity) Same as#empty()but takes in an initial capacity<K> MutableObjectBooleanMap<K>MutableObjectBooleanMapFactory.withInitialCapacity(int capacity) Same asMutableObjectBooleanMapFactory.empty(). but takes in an initial capacity -
Uses of MutableObjectBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableObjectBooleanMapModifier and TypeMethodDescriptionMutableObjectBooleanMap.asSynchronized()MutableObjectBooleanMap.asUnmodifiable()MutableObjectBooleanMap.reject(ObjectBooleanPredicate<? super K> predicate) MutableObjectBooleanMap.select(ObjectBooleanPredicate<? super K> predicate) default MutableObjectBooleanMap<K>MutableObjectBooleanMap.tap(BooleanProcedure procedure) default MutableObjectBooleanMap<K>MutableObjectBooleanMap.withAllKeyValues(Iterable<ObjectBooleanPair<K>> keyValuePairs) MutableObjectBooleanMap.withKeyValue(K key, boolean value) Associates a value with the specified key.MutableObjectBooleanMap.withoutAllKeys(Iterable<? extends K> keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectBooleanMap.withoutKey(K key) Removes the mapping associated with the key, if one exists, from this map.