Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableByteLongMap
-
Packages that use ImmutableByteLongMap 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 ImmutableByteLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableByteLongMap Modifier and Type Method Description ImmutableByteLongMap
ImmutableByteLongMapFactory. empty()
<T> ImmutableByteLongMap
ImmutableByteLongMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableByteLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteLongMap
ImmutableByteLongMapFactory. of()
Same asImmutableByteLongMapFactory.empty()
.ImmutableByteLongMap
ImmutableByteLongMapFactory. of(byte key, long value)
ImmutableByteLongMap
ImmutableByteLongMapFactory. ofAll(ByteLongMap map)
ImmutableByteLongMap
ImmutableByteLongMapFactory. with()
Same asImmutableByteLongMapFactory.empty()
.ImmutableByteLongMap
ImmutableByteLongMapFactory. with(byte key, long value)
ImmutableByteLongMap
ImmutableByteLongMapFactory. withAll(ByteLongMap map)
-
Uses of ImmutableByteLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableByteLongMap Modifier and Type Method Description ImmutableByteLongMap
ImmutableLongByteMap. flipUniqueValues()
ImmutableByteLongMap
ImmutableByteLongMap. newWithKeyValue(byte key, long 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.ImmutableByteLongMap
ImmutableByteLongMap. 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.ImmutableByteLongMap
ImmutableByteLongMap. 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.ImmutableByteLongMap
ImmutableByteLongMap. reject(ByteLongPredicate predicate)
ImmutableByteLongMap
ImmutableByteLongMap. select(ByteLongPredicate predicate)
ImmutableByteLongMap
ByteLongMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableByteLongMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableByteLongMap Modifier and Type Class Description (package private) class
ImmutableByteLongEmptyMap
ImmutableByteLongEmptyMap is an optimization forImmutableByteLongMap
of size 0.(package private) class
ImmutableByteLongHashMap
ImmutableByteLongHashMap is the non-modifiable equivalent ofByteLongHashMap
.(package private) class
ImmutableByteLongSingletonMap
ImmutableByteLongSingletonMap is an optimization forImmutableByteLongMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableByteLongMap Modifier and Type Field Description (package private) static ImmutableByteLongMap
ImmutableByteLongEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableByteLongMap Modifier and Type Method Description ImmutableByteLongMap
ImmutableByteLongMapFactoryImpl. empty()
ImmutableByteLongMap
ImmutableLongByteEmptyMap. flipUniqueValues()
ImmutableByteLongMap
ImmutableLongByteHashMap. flipUniqueValues()
ImmutableByteLongMap
ImmutableLongByteSingletonMap. flipUniqueValues()
<T> ImmutableByteLongMap
ImmutableByteLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
ImmutableByteLongMap
ImmutableByteLongEmptyMap. newWithKeyValue(byte key, long value)
ImmutableByteLongMap
ImmutableByteLongHashMap. newWithKeyValue(byte key, long value)
ImmutableByteLongMap
ImmutableByteLongSingletonMap. newWithKeyValue(byte key, long value)
ImmutableByteLongMap
ImmutableByteLongEmptyMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteLongMap
ImmutableByteLongHashMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteLongMap
ImmutableByteLongSingletonMap. newWithoutAllKeys(ByteIterable keys)
ImmutableByteLongMap
ImmutableByteLongEmptyMap. newWithoutKey(byte key)
ImmutableByteLongMap
ImmutableByteLongHashMap. newWithoutKey(byte key)
ImmutableByteLongMap
ImmutableByteLongSingletonMap. newWithoutKey(byte key)
ImmutableByteLongMap
ImmutableByteLongMapFactoryImpl. of()
ImmutableByteLongMap
ImmutableByteLongMapFactoryImpl. of(byte key, long value)
ImmutableByteLongMap
ImmutableByteLongMapFactoryImpl. ofAll(ByteLongMap map)
ImmutableByteLongMap
ImmutableByteLongEmptyMap. reject(ByteLongPredicate predicate)
ImmutableByteLongMap
ImmutableByteLongHashMap. reject(ByteLongPredicate predicate)
ImmutableByteLongMap
ImmutableByteLongSingletonMap. reject(ByteLongPredicate predicate)
ImmutableByteLongMap
ImmutableByteLongEmptyMap. select(ByteLongPredicate predicate)
ImmutableByteLongMap
ImmutableByteLongHashMap. select(ByteLongPredicate predicate)
ImmutableByteLongMap
ImmutableByteLongSingletonMap. select(ByteLongPredicate predicate)
ImmutableByteLongMap
ImmutableByteLongEmptyMap. toImmutable()
ImmutableByteLongMap
ImmutableByteLongHashMap. toImmutable()
ImmutableByteLongMap
ImmutableByteLongSingletonMap. toImmutable()
ImmutableByteLongMap
ImmutableByteLongMapFactoryImpl. with()
ImmutableByteLongMap
ImmutableByteLongMapFactoryImpl. with(byte key, long value)
ImmutableByteLongMap
ImmutableByteLongMapFactoryImpl. withAll(ByteLongMap map)
-
Uses of ImmutableByteLongMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableByteLongMap Modifier and Type Method Description ImmutableByteLongMap
ByteLongHashMap. toImmutable()
ImmutableByteLongMap
SynchronizedByteLongMap. toImmutable()
ImmutableByteLongMap
UnmodifiableByteLongMap. toImmutable()
-