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