Uses of Interface
org.eclipse.collections.api.map.primitive.MutableByteBooleanMap
Packages that use MutableByteBooleanMap
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 MutableByteBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableByteBooleanMapModifier and TypeMethodDescriptionMutableByteBooleanMapFactory.empty()MutableByteBooleanMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteBooleanMapFactory.of()Same asMutableByteBooleanMapFactory.empty().default MutableByteBooleanMapMutableByteBooleanMapFactory.of(byte key, boolean value) default MutableByteBooleanMapMutableByteBooleanMapFactory.of(byte key1, boolean value1, byte key2, boolean value2) default MutableByteBooleanMapMutableByteBooleanMapFactory.of(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3) default MutableByteBooleanMapMutableByteBooleanMapFactory.of(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3, byte key4, boolean value4) MutableByteBooleanMapFactory.ofAll(ByteBooleanMap map) MutableByteBooleanMapFactory.ofInitialCapacity(int capacity) Same asMutableByteBooleanMapFactory.empty(). but takes in an initial capacityMutableByteBooleanMapFactory.with()Same asMutableByteBooleanMapFactory.empty().default MutableByteBooleanMapMutableByteBooleanMapFactory.with(byte key, boolean value) default MutableByteBooleanMapMutableByteBooleanMapFactory.with(byte key1, boolean value1, byte key2, boolean value2) default MutableByteBooleanMapMutableByteBooleanMapFactory.with(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3) default MutableByteBooleanMapMutableByteBooleanMapFactory.with(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3, byte key4, boolean value4) MutableByteBooleanMapFactory.withAll(ByteBooleanMap map) MutableByteBooleanMapFactory.withInitialCapacity(int capacity) Same asMutableByteBooleanMapFactory.empty(). but takes in an initial capacity -
Uses of MutableByteBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteBooleanMapModifier and TypeMethodDescriptionMutableByteBooleanMap.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.MutableByteBooleanMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableByteBooleanMap.reject(ByteBooleanPredicate predicate) MutableByteBooleanMap.select(ByteBooleanPredicate predicate) default MutableByteBooleanMapMutableByteBooleanMap.withAllKeyValues(Iterable<ByteBooleanPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableByteBooleanMap.withKeyValue(byte key, boolean value) Associates a value with the specified key.MutableByteBooleanMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteBooleanMap.withoutKey(byte key) Removes the mapping associated with the key, if one exists, from this map.