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.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
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().MutableByteCharMapFactory.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(). -
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. -
Uses of MutableByteCharMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableByteCharMapModifier and TypeFieldDescriptionprivate final MutableByteCharMapImmutableByteCharHashMap.delegate -
Uses of MutableByteCharMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableByteCharMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classA synchronized view of aMutableByteCharMap.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableByteCharMapModifier and TypeFieldDescriptionprivate final MutableByteCharMapSynchronizedByteCharMap.mapprivate final MutableByteCharMapUnmodifiableByteCharMap.mapMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteCharMapModifier and TypeMethodDescriptionByteCharHashMap.asSynchronized()SynchronizedByteCharMap.asSynchronized()UnmodifiableByteCharMap.asSynchronized()ByteCharHashMap.asUnmodifiable()SynchronizedByteCharMap.asUnmodifiable()UnmodifiableByteCharMap.asUnmodifiable()MutableByteCharMapFactoryImpl.empty()CharByteHashMap.flipUniqueValues()SynchronizedCharByteMap.flipUniqueValues()UnmodifiableCharByteMap.flipUniqueValues()MutableByteCharMapFactoryImpl.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableByteCharMapFactoryImpl.of()MutableByteCharMapFactoryImpl.of(byte key, char value) MutableByteCharMapFactoryImpl.of(byte key1, char value1, byte key2, char value2) MutableByteCharMapFactoryImpl.of(byte key1, char value1, byte key2, char value2, byte key3, char value3) MutableByteCharMapFactoryImpl.of(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4) MutableByteCharMapFactoryImpl.ofAll(ByteCharMap map) MutableByteCharMapFactoryImpl.ofInitialCapacity(int capacity) SynchronizedByteCharMap.reject(ByteCharPredicate predicate) UnmodifiableByteCharMap.reject(ByteCharPredicate predicate) SynchronizedByteCharMap.select(ByteCharPredicate predicate) UnmodifiableByteCharMap.select(ByteCharPredicate predicate) MutableByteCharMapFactoryImpl.with()MutableByteCharMapFactoryImpl.with(byte key, char value) MutableByteCharMapFactoryImpl.with(byte key1, char value1, byte key2, char value2) MutableByteCharMapFactoryImpl.with(byte key1, char value1, byte key2, char value2, byte key3, char value3) MutableByteCharMapFactoryImpl.with(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4) MutableByteCharMapFactoryImpl.withAll(ByteCharMap map) MutableByteCharMapFactoryImpl.withInitialCapacity(int capacity) SynchronizedByteCharMap.withKeyValue(byte key, char value) UnmodifiableByteCharMap.withKeyValue(byte key, char value) SynchronizedByteCharMap.withoutAllKeys(ByteIterable keys) UnmodifiableByteCharMap.withoutAllKeys(ByteIterable keys) SynchronizedByteCharMap.withoutKey(byte key) UnmodifiableByteCharMap.withoutKey(byte key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableByteCharMap