Uses of Interface
org.eclipse.collections.api.map.primitive.MutableByteCharMap
Packages that use MutableByteCharMap
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 MutableByteCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableByteCharMapModifier and TypeMethodDescriptionMutableByteCharMapFactory.empty()MutableByteCharMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableByteCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteCharMapFactory.of()Same asMutableByteCharMapFactory.empty().default MutableByteCharMapMutableByteCharMapFactory.of(byte key, char value) default MutableByteCharMapMutableByteCharMapFactory.of(byte key1, char value1, byte key2, char value2) default MutableByteCharMapMutableByteCharMapFactory.of(byte key1, char value1, byte key2, char value2, byte key3, char value3) default MutableByteCharMapMutableByteCharMapFactory.of(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4) MutableByteCharMapFactory.ofAll(ByteCharMap map) MutableByteCharMapFactory.ofInitialCapacity(int capacity) Same asMutableByteCharMapFactory.empty(). but takes in an initial capacityMutableByteCharMapFactory.with()Same asMutableByteCharMapFactory.empty().default MutableByteCharMapMutableByteCharMapFactory.with(byte key, char value) default MutableByteCharMapMutableByteCharMapFactory.with(byte key1, char value1, byte key2, char value2) default MutableByteCharMapMutableByteCharMapFactory.with(byte key1, char value1, byte key2, char value2, byte key3, char value3) default MutableByteCharMapMutableByteCharMapFactory.with(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4) MutableByteCharMapFactory.withAll(ByteCharMap map) MutableByteCharMapFactory.withInitialCapacity(int capacity) Same asMutableByteCharMapFactory.empty(). but takes in an initial capacity -
Uses of MutableByteCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteCharMapModifier and TypeMethodDescriptionMutableByteCharMap.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.MutableByteCharMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableCharByteMap.flipUniqueValues()MutableByteCharMap.reject(ByteCharPredicate predicate) MutableByteCharMap.select(ByteCharPredicate predicate) default MutableByteCharMapMutableByteCharMap.withAllKeyValues(Iterable<ByteCharPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableByteCharMap.withKeyValue(byte key, char value) Associates a value with the specified key.MutableByteCharMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteCharMap.withoutKey(byte key) Removes the mapping associated with the key, if one exists, from this map.