Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectByteMap
-
Packages that use MutableObjectByteMap 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 MutableObjectByteMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableObjectByteMap Modifier and Type Method Description <K> MutableObjectByteMap<K>
MutableObjectByteHashingStrategyMapFactory. empty(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. empty()
<T,K>
MutableObjectByteMap<K>MutableObjectByteMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableObjectByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> MutableObjectByteMap<K>
MutableObjectByteHashingStrategyMapFactory. of(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.<K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. of()
Same asMutableObjectByteMapFactory.empty()
.default <K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. of(K key, byte value)
default <K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. of(K key1, byte value1, K key2, byte value2)
default <K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. of(K key1, byte value1, K key2, byte value2, K key3, byte value3)
default <K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. of(K key1, byte value1, K key2, byte value2, K key3, byte value3, K key4, byte value4)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. ofAll(ObjectByteMap<? extends K> map)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. ofInitialCapacity(int capacity)
Same asMutableObjectByteMapFactory.empty()
.<K> MutableObjectByteMap<K>
MutableObjectByteHashingStrategyMapFactory. with(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.<K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. with()
Same asMutableObjectByteMapFactory.empty()
.default <K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. with(K key, byte value)
default <K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. with(K key1, byte value1, K key2, byte value2)
default <K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. with(K key1, byte value1, K key2, byte value2, K key3, byte value3)
default <K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. with(K key1, byte value1, K key2, byte value2, K key3, byte value3, K key4, byte value4)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. withAll(ObjectByteMap<? extends K> map)
<K> MutableObjectByteMap<K>
MutableObjectByteHashingStrategyMapFactory. withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)
Same as#empty()
but takes in an initial capacity<K> MutableObjectByteMap<K>
MutableObjectByteMapFactory. withInitialCapacity(int capacity)
Same asMutableObjectByteMapFactory.empty()
. -
Uses of MutableObjectByteMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableObjectByteMap Modifier and Type Method Description MutableObjectByteMap<K>
MutableObjectByteMap. asSynchronized()
MutableObjectByteMap<K>
MutableObjectByteMap. asUnmodifiable()
MutableObjectByteMap<V>
MutableByteObjectMap. flipUniqueValues()
MutableObjectByteMap<K>
MutableObjectByteMap. reject(ObjectBytePredicate<? super K> predicate)
MutableObjectByteMap<K>
MutableObjectByteMap. select(ObjectBytePredicate<? super K> predicate)
default MutableObjectByteMap<K>
MutableObjectByteMap. tap(ByteProcedure procedure)
default MutableObjectByteMap<K>
MutableObjectByteMap. withAllKeyValues(java.lang.Iterable<ObjectBytePair<K>> keyValuePairs)
MutableObjectByteMap<K>
MutableObjectByteMap. withKeyValue(K key, byte value)
Associates a value with the specified key.MutableObjectByteMap<K>
MutableObjectByteMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectByteMap<K>
MutableObjectByteMap. withoutKey(K key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableObjectByteMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableObjectByteMap Modifier and Type Field Description private MutableObjectByteMap<K>
ImmutableObjectByteHashMap. delegate
-
Uses of MutableObjectByteMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableObjectByteMap Modifier and Type Class Description class
ObjectByteHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.class
ObjectByteHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.class
SynchronizedObjectByteMap<K>
A synchronized view of aMutableObjectByteMap
.class
UnmodifiableObjectByteMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableObjectByteMap Modifier and Type Field Description private MutableObjectByteMap<K>
SynchronizedObjectByteMap. map
private MutableObjectByteMap<K>
UnmodifiableObjectByteMap. map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableObjectByteMap Modifier and Type Method Description MutableObjectByteMap<K>
ObjectByteHashMap. asSynchronized()
MutableObjectByteMap<K>
ObjectByteHashMapWithHashingStrategy. asSynchronized()
MutableObjectByteMap<K>
SynchronizedObjectByteMap. asSynchronized()
MutableObjectByteMap<K>
UnmodifiableObjectByteMap. asSynchronized()
MutableObjectByteMap<K>
ObjectByteHashMap. asUnmodifiable()
MutableObjectByteMap<K>
ObjectByteHashMapWithHashingStrategy. asUnmodifiable()
MutableObjectByteMap<K>
SynchronizedObjectByteMap. asUnmodifiable()
MutableObjectByteMap<K>
UnmodifiableObjectByteMap. asUnmodifiable()
<K> MutableObjectByteMap<K>
MutableObjectByteHashingStrategyMapFactoryImpl. empty(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. empty()
MutableObjectByteMap<V>
ByteObjectHashMap. flipUniqueValues()
MutableObjectByteMap<V>
SynchronizedByteObjectMap. flipUniqueValues()
MutableObjectByteMap<V>
UnmodifiableByteObjectMap. flipUniqueValues()
<T,K>
MutableObjectByteMap<K>MutableObjectByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)
<K> MutableObjectByteMap<K>
MutableObjectByteHashingStrategyMapFactoryImpl. of(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. of()
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. of(K key, byte value)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. of(K key1, byte value1, K key2, byte value2)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. of(K key1, byte value1, K key2, byte value2, K key3, byte value3)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. of(K key1, byte value1, K key2, byte value2, K key3, byte value3, K key4, byte value4)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. ofAll(ObjectByteMap<? extends K> map)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. ofInitialCapacity(int capacity)
MutableObjectByteMap<K>
SynchronizedObjectByteMap. reject(ObjectBytePredicate<? super K> predicate)
MutableObjectByteMap<K>
UnmodifiableObjectByteMap. reject(ObjectBytePredicate<? super K> predicate)
MutableObjectByteMap<K>
SynchronizedObjectByteMap. select(ObjectBytePredicate<? super K> predicate)
MutableObjectByteMap<K>
UnmodifiableObjectByteMap. select(ObjectBytePredicate<? super K> predicate)
<K> MutableObjectByteMap<K>
MutableObjectByteHashingStrategyMapFactoryImpl. with(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. with()
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. with(K key, byte value)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. with(K key1, byte value1, K key2, byte value2)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. with(K key1, byte value1, K key2, byte value2, K key3, byte value3)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. with(K key1, byte value1, K key2, byte value2, K key3, byte value3, K key4, byte value4)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. withAll(ObjectByteMap<? extends K> map)
<K> MutableObjectByteMap<K>
MutableObjectByteHashingStrategyMapFactoryImpl. withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)
<K> MutableObjectByteMap<K>
MutableObjectByteMapFactoryImpl. withInitialCapacity(int capacity)
MutableObjectByteMap<K>
SynchronizedObjectByteMap. withKeyValue(K key, byte value)
MutableObjectByteMap<K>
UnmodifiableObjectByteMap. withKeyValue(K key, byte value)
MutableObjectByteMap<K>
SynchronizedObjectByteMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableObjectByteMap<K>
UnmodifiableObjectByteMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableObjectByteMap<K>
SynchronizedObjectByteMap. withoutKey(K key)
MutableObjectByteMap<K>
UnmodifiableObjectByteMap. withoutKey(K key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableObjectByteMap Constructor Description SynchronizedObjectByteMap(MutableObjectByteMap<K> map)
SynchronizedObjectByteMap(MutableObjectByteMap<K> map, java.lang.Object newLock)
UnmodifiableObjectByteMap(MutableObjectByteMap<K> map)
-