Uses of Interface
org.eclipse.collections.api.map.primitive.MutableByteIntMap
-
Packages that use MutableByteIntMap 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 MutableByteIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableByteIntMap Modifier and Type Method Description MutableByteIntMap
MutableByteIntMapFactory. empty()
<T> MutableByteIntMap
MutableByteIntMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableByteIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteIntMap
MutableByteIntMapFactory. of()
Same asMutableByteIntMapFactory.empty()
.default MutableByteIntMap
MutableByteIntMapFactory. of(byte key, int value)
default MutableByteIntMap
MutableByteIntMapFactory. of(byte key1, int value1, byte key2, int value2)
default MutableByteIntMap
MutableByteIntMapFactory. of(byte key1, int value1, byte key2, int value2, byte key3, int value3)
default MutableByteIntMap
MutableByteIntMapFactory. of(byte key1, int value1, byte key2, int value2, byte key3, int value3, byte key4, int value4)
MutableByteIntMap
MutableByteIntMapFactory. ofAll(ByteIntMap map)
MutableByteIntMap
MutableByteIntMapFactory. ofInitialCapacity(int capacity)
Same asMutableByteIntMapFactory.empty()
.MutableByteIntMap
MutableByteIntMapFactory. with()
Same asMutableByteIntMapFactory.empty()
.default MutableByteIntMap
MutableByteIntMapFactory. with(byte key, int value)
default MutableByteIntMap
MutableByteIntMapFactory. with(byte key1, int value1, byte key2, int value2)
default MutableByteIntMap
MutableByteIntMapFactory. with(byte key1, int value1, byte key2, int value2, byte key3, int value3)
default MutableByteIntMap
MutableByteIntMapFactory. with(byte key1, int value1, byte key2, int value2, byte key3, int value3, byte key4, int value4)
MutableByteIntMap
MutableByteIntMapFactory. withAll(ByteIntMap map)
MutableByteIntMap
MutableByteIntMapFactory. withInitialCapacity(int capacity)
Same asMutableByteIntMapFactory.empty()
. -
Uses of MutableByteIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteIntMap Modifier and Type Method Description MutableByteIntMap
MutableByteIntMap. 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.MutableByteIntMap
MutableByteIntMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableByteIntMap
MutableIntByteMap. flipUniqueValues()
MutableByteIntMap
MutableByteIntMap. reject(ByteIntPredicate predicate)
MutableByteIntMap
MutableByteIntMap. select(ByteIntPredicate predicate)
default MutableByteIntMap
MutableByteIntMap. withAllKeyValues(java.lang.Iterable<ByteIntPair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.MutableByteIntMap
MutableByteIntMap. withKeyValue(byte key, int value)
Associates a value with the specified key.MutableByteIntMap
MutableByteIntMap. withoutAllKeys(ByteIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableByteIntMap
MutableByteIntMap. withoutKey(byte key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableByteIntMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableByteIntMap Modifier and Type Field Description private MutableByteIntMap
ImmutableByteIntHashMap. delegate
-
Uses of MutableByteIntMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableByteIntMap Modifier and Type Class Description class
ByteIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
SynchronizedByteIntMap
A synchronized view of aMutableByteIntMap
.class
UnmodifiableByteIntMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableByteIntMap Modifier and Type Field Description private MutableByteIntMap
SynchronizedByteIntMap. map
private MutableByteIntMap
UnmodifiableByteIntMap. map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteIntMap Modifier and Type Method Description MutableByteIntMap
ByteIntHashMap. asSynchronized()
MutableByteIntMap
SynchronizedByteIntMap. asSynchronized()
MutableByteIntMap
UnmodifiableByteIntMap. asSynchronized()
MutableByteIntMap
ByteIntHashMap. asUnmodifiable()
MutableByteIntMap
SynchronizedByteIntMap. asUnmodifiable()
MutableByteIntMap
UnmodifiableByteIntMap. asUnmodifiable()
MutableByteIntMap
MutableByteIntMapFactoryImpl. empty()
MutableByteIntMap
IntByteHashMap. flipUniqueValues()
MutableByteIntMap
SynchronizedIntByteMap. flipUniqueValues()
MutableByteIntMap
UnmodifiableIntByteMap. flipUniqueValues()
<T> MutableByteIntMap
MutableByteIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
MutableByteIntMap
MutableByteIntMapFactoryImpl. of()
MutableByteIntMap
MutableByteIntMapFactoryImpl. of(byte key, int value)
MutableByteIntMap
MutableByteIntMapFactoryImpl. of(byte key1, int value1, byte key2, int value2)
MutableByteIntMap
MutableByteIntMapFactoryImpl. of(byte key1, int value1, byte key2, int value2, byte key3, int value3)
MutableByteIntMap
MutableByteIntMapFactoryImpl. of(byte key1, int value1, byte key2, int value2, byte key3, int value3, byte key4, int value4)
MutableByteIntMap
MutableByteIntMapFactoryImpl. ofAll(ByteIntMap map)
MutableByteIntMap
MutableByteIntMapFactoryImpl. ofInitialCapacity(int capacity)
MutableByteIntMap
SynchronizedByteIntMap. reject(ByteIntPredicate predicate)
MutableByteIntMap
UnmodifiableByteIntMap. reject(ByteIntPredicate predicate)
MutableByteIntMap
SynchronizedByteIntMap. select(ByteIntPredicate predicate)
MutableByteIntMap
UnmodifiableByteIntMap. select(ByteIntPredicate predicate)
MutableByteIntMap
MutableByteIntMapFactoryImpl. with()
MutableByteIntMap
MutableByteIntMapFactoryImpl. with(byte key, int value)
MutableByteIntMap
MutableByteIntMapFactoryImpl. with(byte key1, int value1, byte key2, int value2)
MutableByteIntMap
MutableByteIntMapFactoryImpl. with(byte key1, int value1, byte key2, int value2, byte key3, int value3)
MutableByteIntMap
MutableByteIntMapFactoryImpl. with(byte key1, int value1, byte key2, int value2, byte key3, int value3, byte key4, int value4)
MutableByteIntMap
MutableByteIntMapFactoryImpl. withAll(ByteIntMap map)
MutableByteIntMap
MutableByteIntMapFactoryImpl. withInitialCapacity(int capacity)
MutableByteIntMap
SynchronizedByteIntMap. withKeyValue(byte key, int value)
MutableByteIntMap
UnmodifiableByteIntMap. withKeyValue(byte key, int value)
MutableByteIntMap
SynchronizedByteIntMap. withoutAllKeys(ByteIterable keys)
MutableByteIntMap
UnmodifiableByteIntMap. withoutAllKeys(ByteIterable keys)
MutableByteIntMap
SynchronizedByteIntMap. withoutKey(byte key)
MutableByteIntMap
UnmodifiableByteIntMap. withoutKey(byte key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableByteIntMap Constructor Description SynchronizedByteIntMap(MutableByteIntMap map)
SynchronizedByteIntMap(MutableByteIntMap map, java.lang.Object newLock)
UnmodifiableByteIntMap(MutableByteIntMap map)
-