Uses of Interface
org.eclipse.collections.api.map.primitive.MutableByteObjectMap
-
Packages that use MutableByteObjectMap 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 MutableByteObjectMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableByteObjectMap Modifier and Type Method Description <V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. empty()
<T,V>
MutableByteObjectMap<V>MutableByteObjectMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anMutableByteObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. of()
Same asMutableByteObjectMapFactory.empty()
.default <V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. of(byte key, V value)
default <V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. of(byte key1, V value1, byte key2, V value2)
default <V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. of(byte key1, V value1, byte key2, V value2, byte key3, V value3)
default <V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. of(byte key1, V value1, byte key2, V value2, byte key3, V value3, byte key4, V value4)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. ofAll(ByteObjectMap<? extends V> map)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. ofInitialCapacity(int capacity)
Same asMutableByteObjectMapFactory.empty()
.<V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. with()
Same asMutableByteObjectMapFactory.empty()
.default <V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. with(byte key, V value)
default <V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. with(byte key1, V value1, byte key2, V value2)
default <V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. with(byte key1, V value1, byte key2, V value2, byte key3, V value3)
default <V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. with(byte key1, V value1, byte key2, V value2, byte key3, V value3, byte key4, V value4)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. withAll(ByteObjectMap<? extends V> map)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactory. withInitialCapacity(int capacity)
Same asMutableByteObjectMapFactory.empty()
. -
Uses of MutableByteObjectMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteObjectMap Modifier and Type Method Description MutableByteObjectMap<V>
MutableByteObjectMap. 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.MutableByteObjectMap<V>
MutableByteObjectMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableByteObjectMap<K>
MutableObjectByteMap. flipUniqueValues()
MutableByteObjectMap<V>
MutableByteObjectMap. reject(ByteObjectPredicate<? super V> predicate)
MutableByteObjectMap<V>
MutableByteObjectMap. select(ByteObjectPredicate<? super V> predicate)
MutableByteObjectMap<V>
MutableByteObjectMap. tap(Procedure<? super V> procedure)
default MutableByteObjectMap<V>
MutableByteObjectMap. withAllKeyValues(java.lang.Iterable<ByteObjectPair<V>> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.MutableByteObjectMap<V>
MutableByteObjectMap. withKeyValue(byte key, V value)
Associates a value with the specified key.MutableByteObjectMap<V>
MutableByteObjectMap. withoutAllKeys(ByteIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableByteObjectMap<V>
MutableByteObjectMap. withoutKey(byte key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableByteObjectMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableByteObjectMap Modifier and Type Field Description private MutableByteObjectMap<V>
ImmutableByteObjectHashMap. delegate
-
Uses of MutableByteObjectMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableByteObjectMap Modifier and Type Class Description class
ByteObjectHashMap<V>
This file was automatically generated from template file primitiveObjectHashMap.stg.class
SynchronizedByteObjectMap<V>
A synchronized view of aMutableByteObjectMap
.class
UnmodifiableByteObjectMap<V>
This file was automatically generated from template file unmodifiablePrimitiveObjectMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableByteObjectMap Modifier and Type Field Description private MutableByteObjectMap<V>
SynchronizedByteObjectMap. map
private MutableByteObjectMap<V>
UnmodifiableByteObjectMap. map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteObjectMap Modifier and Type Method Description MutableByteObjectMap<V>
ByteObjectHashMap. asSynchronized()
MutableByteObjectMap<V>
SynchronizedByteObjectMap. asSynchronized()
MutableByteObjectMap<V>
UnmodifiableByteObjectMap. asSynchronized()
MutableByteObjectMap<V>
ByteObjectHashMap. asUnmodifiable()
MutableByteObjectMap<V>
SynchronizedByteObjectMap. asUnmodifiable()
MutableByteObjectMap<V>
UnmodifiableByteObjectMap. asUnmodifiable()
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. empty()
MutableByteObjectMap<K>
ObjectByteHashMap. flipUniqueValues()
MutableByteObjectMap<K>
ObjectByteHashMapWithHashingStrategy. flipUniqueValues()
MutableByteObjectMap<K>
SynchronizedObjectByteMap. flipUniqueValues()
MutableByteObjectMap<K>
UnmodifiableObjectByteMap. flipUniqueValues()
<T,V>
MutableByteObjectMap<V>MutableByteObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. of()
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. of(byte key, V value)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. of(byte key1, V value1, byte key2, V value2)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. of(byte key1, V value1, byte key2, V value2, byte key3, V value3)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. of(byte key1, V value1, byte key2, V value2, byte key3, V value3, byte key4, V value4)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. ofAll(ByteObjectMap<? extends V> map)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. ofInitialCapacity(int capacity)
MutableByteObjectMap<V>
SynchronizedByteObjectMap. reject(ByteObjectPredicate<? super V> predicate)
MutableByteObjectMap<V>
UnmodifiableByteObjectMap. reject(ByteObjectPredicate<? super V> predicate)
MutableByteObjectMap<V>
SynchronizedByteObjectMap. select(ByteObjectPredicate<? super V> predicate)
MutableByteObjectMap<V>
UnmodifiableByteObjectMap. select(ByteObjectPredicate<? super V> predicate)
MutableByteObjectMap<V>
SynchronizedByteObjectMap. tap(Procedure<? super V> procedure)
MutableByteObjectMap<V>
UnmodifiableByteObjectMap. tap(Procedure<? super V> procedure)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. with()
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. with(byte key, V value)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. with(byte key1, V value1, byte key2, V value2)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. with(byte key1, V value1, byte key2, V value2, byte key3, V value3)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. with(byte key1, V value1, byte key2, V value2, byte key3, V value3, byte key4, V value4)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. withAll(ByteObjectMap<? extends V> map)
<V> MutableByteObjectMap<V>
MutableByteObjectMapFactoryImpl. withInitialCapacity(int capacity)
MutableByteObjectMap<V>
SynchronizedByteObjectMap. withKeyValue(byte key, V value)
MutableByteObjectMap<V>
UnmodifiableByteObjectMap. withKeyValue(byte key, V value)
MutableByteObjectMap<V>
ByteObjectHashMap. withoutAllKeys(ByteIterable keys)
MutableByteObjectMap<V>
SynchronizedByteObjectMap. withoutAllKeys(ByteIterable keys)
MutableByteObjectMap<V>
UnmodifiableByteObjectMap. withoutAllKeys(ByteIterable keys)
MutableByteObjectMap<V>
ByteObjectHashMap. withoutKey(byte key)
MutableByteObjectMap<V>
SynchronizedByteObjectMap. withoutKey(byte key)
MutableByteObjectMap<V>
UnmodifiableByteObjectMap. withoutKey(byte key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableByteObjectMap Constructor Description SynchronizedByteObjectMap(MutableByteObjectMap<V> map)
SynchronizedByteObjectMap(MutableByteObjectMap<V> map, java.lang.Object newLock)
UnmodifiableByteObjectMap(MutableByteObjectMap<V> map)
-