Uses of Interface
org.eclipse.collections.api.map.primitive.MutableByteByteMap
Packages that use MutableByteByteMap
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 MutableByteByteMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableByteByteMapModifier and TypeMethodDescriptionMutableByteByteMapFactory.empty()MutableByteByteMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableByteByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteByteMapFactory.of()Same asMutableByteByteMapFactory.empty().default MutableByteByteMapMutableByteByteMapFactory.of(byte key, byte value) default MutableByteByteMapMutableByteByteMapFactory.of(byte key1, byte value1, byte key2, byte value2) default MutableByteByteMapMutableByteByteMapFactory.of(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3) default MutableByteByteMapMutableByteByteMapFactory.of(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3, byte key4, byte value4) MutableByteByteMapFactory.ofAll(ByteByteMap map) MutableByteByteMapFactory.ofInitialCapacity(int capacity) Same asMutableByteByteMapFactory.empty(). but takes in an initial capacityMutableByteByteMapFactory.with()Same asMutableByteByteMapFactory.empty().default MutableByteByteMapMutableByteByteMapFactory.with(byte key, byte value) default MutableByteByteMapMutableByteByteMapFactory.with(byte key1, byte value1, byte key2, byte value2) default MutableByteByteMapMutableByteByteMapFactory.with(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3) default MutableByteByteMapMutableByteByteMapFactory.with(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3, byte key4, byte value4) MutableByteByteMapFactory.withAll(ByteByteMap map) MutableByteByteMapFactory.withInitialCapacity(int capacity) Same asMutableByteByteMapFactory.empty(). but takes in an initial capacity -
Uses of MutableByteByteMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteByteMapModifier and TypeMethodDescriptionMutableByteByteMap.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.MutableByteByteMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableByteByteMap.flipUniqueValues()MutableByteByteMap.reject(ByteBytePredicate predicate) MutableByteByteMap.select(ByteBytePredicate predicate) default MutableByteByteMapMutableByteByteMap.withAllKeyValues(Iterable<ByteBytePair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableByteByteMap.withKeyValue(byte key, byte value) Associates a value with the specified key.MutableByteByteMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteByteMap.withoutKey(byte key) Removes the mapping associated with the key, if one exists, from this map.