Uses of Interface
org.eclipse.collections.api.map.primitive.MutableByteCharMap
-
Packages that use MutableByteCharMap 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.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive 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 MutableByteCharMap Modifier and Type Method Description MutableByteCharMap
MutableByteCharMapFactory. empty()
<T> MutableByteCharMap
MutableByteCharMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteCharMap
MutableByteCharMapFactory. of()
Same asMutableByteCharMapFactory.empty()
.default MutableByteCharMap
MutableByteCharMapFactory. of(byte key, char value)
default MutableByteCharMap
MutableByteCharMapFactory. of(byte key1, char value1, byte key2, char value2)
default MutableByteCharMap
MutableByteCharMapFactory. of(byte key1, char value1, byte key2, char value2, byte key3, char value3)
default MutableByteCharMap
MutableByteCharMapFactory. of(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4)
MutableByteCharMap
MutableByteCharMapFactory. ofAll(ByteCharMap map)
MutableByteCharMap
MutableByteCharMapFactory. ofInitialCapacity(int capacity)
Same asMutableByteCharMapFactory.empty()
.MutableByteCharMap
MutableByteCharMapFactory. with()
Same asMutableByteCharMapFactory.empty()
.default MutableByteCharMap
MutableByteCharMapFactory. with(byte key, char value)
default MutableByteCharMap
MutableByteCharMapFactory. with(byte key1, char value1, byte key2, char value2)
default MutableByteCharMap
MutableByteCharMapFactory. with(byte key1, char value1, byte key2, char value2, byte key3, char value3)
default MutableByteCharMap
MutableByteCharMapFactory. with(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4)
MutableByteCharMap
MutableByteCharMapFactory. withAll(ByteCharMap map)
MutableByteCharMap
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 MutableByteCharMap Modifier and Type Method Description MutableByteCharMap
MutableByteCharMap. 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
MutableByteCharMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableByteCharMap
MutableCharByteMap. flipUniqueValues()
MutableByteCharMap
MutableByteCharMap. reject(ByteCharPredicate predicate)
MutableByteCharMap
MutableByteCharMap. select(ByteCharPredicate predicate)
default MutableByteCharMap
MutableByteCharMap. withAllKeyValues(java.lang.Iterable<ByteCharPair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.MutableByteCharMap
MutableByteCharMap. withKeyValue(byte key, char value)
Associates a value with the specified key.MutableByteCharMap
MutableByteCharMap. withoutAllKeys(ByteIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableByteCharMap
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 MutableByteCharMap Modifier and Type Field Description private MutableByteCharMap
ImmutableByteCharHashMap. delegate
-
Uses of MutableByteCharMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableByteCharMap Modifier and Type Class Description class
ByteCharHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
SynchronizedByteCharMap
A synchronized view of aMutableByteCharMap
.class
UnmodifiableByteCharMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableByteCharMap Modifier and Type Field Description private MutableByteCharMap
SynchronizedByteCharMap. map
private MutableByteCharMap
UnmodifiableByteCharMap. map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteCharMap Modifier and Type Method Description MutableByteCharMap
ByteCharHashMap. asSynchronized()
MutableByteCharMap
SynchronizedByteCharMap. asSynchronized()
MutableByteCharMap
UnmodifiableByteCharMap. asSynchronized()
MutableByteCharMap
ByteCharHashMap. asUnmodifiable()
MutableByteCharMap
SynchronizedByteCharMap. asUnmodifiable()
MutableByteCharMap
UnmodifiableByteCharMap. asUnmodifiable()
MutableByteCharMap
MutableByteCharMapFactoryImpl. empty()
MutableByteCharMap
CharByteHashMap. flipUniqueValues()
MutableByteCharMap
SynchronizedCharByteMap. flipUniqueValues()
MutableByteCharMap
UnmodifiableCharByteMap. flipUniqueValues()
<T> MutableByteCharMap
MutableByteCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
MutableByteCharMap
MutableByteCharMapFactoryImpl. of()
MutableByteCharMap
MutableByteCharMapFactoryImpl. of(byte key, char value)
MutableByteCharMap
MutableByteCharMapFactoryImpl. of(byte key1, char value1, byte key2, char value2)
MutableByteCharMap
MutableByteCharMapFactoryImpl. of(byte key1, char value1, byte key2, char value2, byte key3, char value3)
MutableByteCharMap
MutableByteCharMapFactoryImpl. of(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4)
MutableByteCharMap
MutableByteCharMapFactoryImpl. ofAll(ByteCharMap map)
MutableByteCharMap
MutableByteCharMapFactoryImpl. ofInitialCapacity(int capacity)
MutableByteCharMap
SynchronizedByteCharMap. reject(ByteCharPredicate predicate)
MutableByteCharMap
UnmodifiableByteCharMap. reject(ByteCharPredicate predicate)
MutableByteCharMap
SynchronizedByteCharMap. select(ByteCharPredicate predicate)
MutableByteCharMap
UnmodifiableByteCharMap. select(ByteCharPredicate predicate)
MutableByteCharMap
MutableByteCharMapFactoryImpl. with()
MutableByteCharMap
MutableByteCharMapFactoryImpl. with(byte key, char value)
MutableByteCharMap
MutableByteCharMapFactoryImpl. with(byte key1, char value1, byte key2, char value2)
MutableByteCharMap
MutableByteCharMapFactoryImpl. with(byte key1, char value1, byte key2, char value2, byte key3, char value3)
MutableByteCharMap
MutableByteCharMapFactoryImpl. with(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4)
MutableByteCharMap
MutableByteCharMapFactoryImpl. withAll(ByteCharMap map)
MutableByteCharMap
MutableByteCharMapFactoryImpl. withInitialCapacity(int capacity)
MutableByteCharMap
SynchronizedByteCharMap. withKeyValue(byte key, char value)
MutableByteCharMap
UnmodifiableByteCharMap. withKeyValue(byte key, char value)
MutableByteCharMap
SynchronizedByteCharMap. withoutAllKeys(ByteIterable keys)
MutableByteCharMap
UnmodifiableByteCharMap. withoutAllKeys(ByteIterable keys)
MutableByteCharMap
SynchronizedByteCharMap. withoutKey(byte key)
MutableByteCharMap
UnmodifiableByteCharMap. withoutKey(byte key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableByteCharMap Constructor Description SynchronizedByteCharMap(MutableByteCharMap map)
SynchronizedByteCharMap(MutableByteCharMap map, java.lang.Object newLock)
UnmodifiableByteCharMap(MutableByteCharMap map)
-