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