Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableLongByteMap
-
Packages that use ImmutableLongByteMap 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 ImmutableLongByteMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableLongByteMap Modifier and Type Method Description ImmutableLongByteMap
ImmutableLongByteMapFactory. empty()
<T> ImmutableLongByteMap
ImmutableLongByteMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableLongByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongByteMap
ImmutableLongByteMapFactory. of()
Same asImmutableLongByteMapFactory.empty()
.ImmutableLongByteMap
ImmutableLongByteMapFactory. of(long key, byte value)
ImmutableLongByteMap
ImmutableLongByteMapFactory. ofAll(LongByteMap map)
ImmutableLongByteMap
ImmutableLongByteMapFactory. with()
Same asImmutableLongByteMapFactory.empty()
.ImmutableLongByteMap
ImmutableLongByteMapFactory. with(long key, byte value)
ImmutableLongByteMap
ImmutableLongByteMapFactory. withAll(LongByteMap map)
-
Uses of ImmutableLongByteMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableLongByteMap Modifier and Type Method Description ImmutableLongByteMap
ImmutableByteLongMap. flipUniqueValues()
ImmutableLongByteMap
ImmutableLongByteMap. newWithKeyValue(long key, byte 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.ImmutableLongByteMap
ImmutableLongByteMap. newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableLongByteMap
ImmutableLongByteMap. newWithoutKey(long key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableLongByteMap
ImmutableLongByteMap. reject(LongBytePredicate predicate)
ImmutableLongByteMap
ImmutableLongByteMap. select(LongBytePredicate predicate)
ImmutableLongByteMap
LongByteMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableLongByteMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableLongByteMap Modifier and Type Class Description (package private) class
ImmutableLongByteEmptyMap
ImmutableLongByteEmptyMap is an optimization forImmutableLongByteMap
of size 0.(package private) class
ImmutableLongByteHashMap
ImmutableLongByteHashMap is the non-modifiable equivalent ofLongByteHashMap
.(package private) class
ImmutableLongByteSingletonMap
ImmutableLongByteSingletonMap is an optimization forImmutableLongByteMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableLongByteMap Modifier and Type Field Description (package private) static ImmutableLongByteMap
ImmutableLongByteEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableLongByteMap Modifier and Type Method Description ImmutableLongByteMap
ImmutableLongByteMapFactoryImpl. empty()
ImmutableLongByteMap
ImmutableByteLongEmptyMap. flipUniqueValues()
ImmutableLongByteMap
ImmutableByteLongHashMap. flipUniqueValues()
ImmutableLongByteMap
ImmutableByteLongSingletonMap. flipUniqueValues()
<T> ImmutableLongByteMap
ImmutableLongByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
ImmutableLongByteMap
ImmutableLongByteEmptyMap. newWithKeyValue(long key, byte value)
ImmutableLongByteMap
ImmutableLongByteHashMap. newWithKeyValue(long key, byte value)
ImmutableLongByteMap
ImmutableLongByteSingletonMap. newWithKeyValue(long key, byte value)
ImmutableLongByteMap
ImmutableLongByteEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongByteMap
ImmutableLongByteHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongByteMap
ImmutableLongByteSingletonMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongByteMap
ImmutableLongByteEmptyMap. newWithoutKey(long key)
ImmutableLongByteMap
ImmutableLongByteHashMap. newWithoutKey(long key)
ImmutableLongByteMap
ImmutableLongByteSingletonMap. newWithoutKey(long key)
ImmutableLongByteMap
ImmutableLongByteMapFactoryImpl. of()
ImmutableLongByteMap
ImmutableLongByteMapFactoryImpl. of(long key, byte value)
ImmutableLongByteMap
ImmutableLongByteMapFactoryImpl. ofAll(LongByteMap map)
ImmutableLongByteMap
ImmutableLongByteEmptyMap. reject(LongBytePredicate predicate)
ImmutableLongByteMap
ImmutableLongByteHashMap. reject(LongBytePredicate predicate)
ImmutableLongByteMap
ImmutableLongByteSingletonMap. reject(LongBytePredicate predicate)
ImmutableLongByteMap
ImmutableLongByteEmptyMap. select(LongBytePredicate predicate)
ImmutableLongByteMap
ImmutableLongByteHashMap. select(LongBytePredicate predicate)
ImmutableLongByteMap
ImmutableLongByteSingletonMap. select(LongBytePredicate predicate)
ImmutableLongByteMap
ImmutableLongByteEmptyMap. toImmutable()
ImmutableLongByteMap
ImmutableLongByteHashMap. toImmutable()
ImmutableLongByteMap
ImmutableLongByteSingletonMap. toImmutable()
ImmutableLongByteMap
ImmutableLongByteMapFactoryImpl. with()
ImmutableLongByteMap
ImmutableLongByteMapFactoryImpl. with(long key, byte value)
ImmutableLongByteMap
ImmutableLongByteMapFactoryImpl. withAll(LongByteMap map)
-
Uses of ImmutableLongByteMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableLongByteMap Modifier and Type Method Description ImmutableLongByteMap
LongByteHashMap. toImmutable()
ImmutableLongByteMap
SynchronizedLongByteMap. toImmutable()
ImmutableLongByteMap
UnmodifiableLongByteMap. toImmutable()
-