Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableByteIntMap
-
Packages that use ImmutableByteIntMap 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 ImmutableByteIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableByteIntMap Modifier and Type Method Description ImmutableByteIntMap
ImmutableByteIntMapFactory. empty()
<T> ImmutableByteIntMap
ImmutableByteIntMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableByteIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteIntMap
ImmutableByteIntMapFactory. of()
Same asImmutableByteIntMapFactory.empty()
.ImmutableByteIntMap
ImmutableByteIntMapFactory. of(byte key, int value)
ImmutableByteIntMap
ImmutableByteIntMapFactory. ofAll(ByteIntMap map)
ImmutableByteIntMap
ImmutableByteIntMapFactory. with()
Same asImmutableByteIntMapFactory.empty()
.ImmutableByteIntMap
ImmutableByteIntMapFactory. with(byte key, int value)
ImmutableByteIntMap
ImmutableByteIntMapFactory. withAll(ByteIntMap map)
-
Uses of ImmutableByteIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableByteIntMap Modifier and Type Method Description ImmutableByteIntMap
ImmutableIntByteMap. flipUniqueValues()
ImmutableByteIntMap
ImmutableByteIntMap. newWithKeyValue(byte key, int value)
Copy this map, associate the value with the key (replacing the value if one already exists forkey
), and return the copy as new immutable map.ImmutableByteIntMap
ImmutableByteIntMap. newWithoutAllKeys(ByteIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteIntMap
ImmutableByteIntMap. newWithoutKey(byte key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableByteIntMap
ImmutableByteIntMap. reject(ByteIntPredicate predicate)
ImmutableByteIntMap
ImmutableByteIntMap. select(ByteIntPredicate predicate)
ImmutableByteIntMap
ByteIntMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableByteIntMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableByteIntMap Modifier and Type Class Description (package private) class
ImmutableByteIntEmptyMap
ImmutableByteIntEmptyMap is an optimization forImmutableByteIntMap
of size 0.(package private) class
ImmutableByteIntHashMap
ImmutableByteIntHashMap is the non-modifiable equivalent ofByteIntHashMap
.(package private) class
ImmutableByteIntSingletonMap
ImmutableByteIntSingletonMap is an optimization forImmutableByteIntMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableByteIntMap Modifier and Type Field Description (package private) static ImmutableByteIntMap
ImmutableByteIntEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableByteIntMap Modifier and Type Method Description ImmutableByteIntMap
ImmutableByteIntMapFactoryImpl. empty()
ImmutableByteIntMap
ImmutableIntByteEmptyMap. flipUniqueValues()
ImmutableByteIntMap
ImmutableIntByteHashMap. flipUniqueValues()
ImmutableByteIntMap
ImmutableIntByteSingletonMap. flipUniqueValues()
<T> ImmutableByteIntMap
ImmutableByteIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
ImmutableByteIntMap
ImmutableByteIntEmptyMap. newWithKeyValue(byte key, int value)
ImmutableByteIntMap
ImmutableByteIntHashMap. newWithKeyValue(byte key, int value)
ImmutableByteIntMap
ImmutableByteIntSingletonMap. newWithKeyValue(byte key, int value)
ImmutableByteIntMap
ImmutableByteIntEmptyMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteIntMap
ImmutableByteIntHashMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteIntMap
ImmutableByteIntSingletonMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteIntMap
ImmutableByteIntEmptyMap. newWithoutKey(byte key)
ImmutableByteIntMap
ImmutableByteIntHashMap. newWithoutKey(byte key)
ImmutableByteIntMap
ImmutableByteIntSingletonMap. newWithoutKey(byte key)
ImmutableByteIntMap
ImmutableByteIntMapFactoryImpl. of()
ImmutableByteIntMap
ImmutableByteIntMapFactoryImpl. of(byte key, int value)
ImmutableByteIntMap
ImmutableByteIntMapFactoryImpl. ofAll(ByteIntMap map)
ImmutableByteIntMap
ImmutableByteIntEmptyMap. reject(ByteIntPredicate predicate)
ImmutableByteIntMap
ImmutableByteIntHashMap. reject(ByteIntPredicate predicate)
ImmutableByteIntMap
ImmutableByteIntSingletonMap. reject(ByteIntPredicate predicate)
ImmutableByteIntMap
ImmutableByteIntEmptyMap. select(ByteIntPredicate predicate)
ImmutableByteIntMap
ImmutableByteIntHashMap. select(ByteIntPredicate predicate)
ImmutableByteIntMap
ImmutableByteIntSingletonMap. select(ByteIntPredicate predicate)
ImmutableByteIntMap
ImmutableByteIntEmptyMap. toImmutable()
ImmutableByteIntMap
ImmutableByteIntHashMap. toImmutable()
ImmutableByteIntMap
ImmutableByteIntSingletonMap. toImmutable()
ImmutableByteIntMap
ImmutableByteIntMapFactoryImpl. with()
ImmutableByteIntMap
ImmutableByteIntMapFactoryImpl. with(byte key, int value)
ImmutableByteIntMap
ImmutableByteIntMapFactoryImpl. withAll(ByteIntMap map)
-
Uses of ImmutableByteIntMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableByteIntMap Modifier and Type Method Description ImmutableByteIntMap
ByteIntHashMap. toImmutable()
ImmutableByteIntMap
SynchronizedByteIntMap. toImmutable()
ImmutableByteIntMap
UnmodifiableByteIntMap. toImmutable()
-