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