Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableObjectByteMap
-
Packages that use ImmutableObjectByteMap 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 ImmutableObjectByteMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableObjectByteMap Modifier and Type Method Description <K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactory. empty()
<T,K>
ImmutableObjectByteMap<K>ImmutableObjectByteMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableObjectByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactory. of()
<K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactory. of(K key, byte value)
<K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactory. ofAll(ObjectByteMap<? extends K> map)
<K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactory. with()
<K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactory. with(K key, byte value)
<K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactory. withAll(ObjectByteMap<? extends K> map)
-
Uses of ImmutableObjectByteMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableObjectByteMap Modifier and Type Method Description ImmutableObjectByteMap<V>
ImmutableByteObjectMap. flipUniqueValues()
ImmutableObjectByteMap<K>
ImmutableObjectByteMap. newWithKeyValue(K 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.ImmutableObjectByteMap<K>
ImmutableObjectByteMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableObjectByteMap<K>
ImmutableObjectByteMap. newWithoutKey(K key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableObjectByteMap<K>
ImmutableObjectByteMap. reject(ObjectBytePredicate<? super K> predicate)
ImmutableObjectByteMap<K>
ImmutableObjectByteMap. select(ObjectBytePredicate<? super K> predicate)
default ImmutableObjectByteMap<K>
ImmutableObjectByteMap. tap(ByteProcedure procedure)
ImmutableObjectByteMap<K>
ObjectByteMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableObjectByteMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableObjectByteMap Modifier and Type Class Description class
AbstractImmutableObjectByteMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) class
ImmutableObjectByteEmptyMap<K>
ImmutableObjectByteEmptyMap is an optimization forImmutableObjectByteMap
of size 0.(package private) class
ImmutableObjectByteHashMap<K>
ImmutableObjectByteHashMap is the non-modifiable equivalent ofObjectByteHashMap
.(package private) class
ImmutableObjectByteSingletonMap<K>
ImmutableObjectByteSingletonMap is an optimization forImmutableObjectByteMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableObjectByteMap Modifier and Type Field Description (package private) static ImmutableObjectByteMap<?>
ImmutableObjectByteEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableObjectByteMap Modifier and Type Method Description <K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactoryImpl. empty()
ImmutableObjectByteMap<V>
ImmutableByteObjectEmptyMap. flipUniqueValues()
ImmutableObjectByteMap<V>
ImmutableByteObjectHashMap. flipUniqueValues()
ImmutableObjectByteMap<V>
ImmutableByteObjectSingletonMap. flipUniqueValues()
<T,K>
ImmutableObjectByteMap<K>ImmutableObjectByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)
ImmutableObjectByteMap<K>
ImmutableObjectByteEmptyMap. newWithKeyValue(K key, byte value)
ImmutableObjectByteMap<K>
ImmutableObjectByteHashMap. newWithKeyValue(K key, byte value)
ImmutableObjectByteMap<K>
ImmutableObjectByteSingletonMap. newWithKeyValue(K key, byte value)
ImmutableObjectByteMap<K>
ImmutableObjectByteEmptyMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectByteMap<K>
ImmutableObjectByteHashMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectByteMap<K>
ImmutableObjectByteSingletonMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectByteMap<K>
ImmutableObjectByteEmptyMap. newWithoutKey(K key)
ImmutableObjectByteMap<K>
ImmutableObjectByteHashMap. newWithoutKey(K key)
ImmutableObjectByteMap<K>
ImmutableObjectByteSingletonMap. newWithoutKey(K key)
<K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactoryImpl. of()
<K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactoryImpl. of(K key, byte value)
<K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactoryImpl. ofAll(ObjectByteMap<? extends K> map)
ImmutableObjectByteMap<K>
ImmutableObjectByteEmptyMap. reject(ObjectBytePredicate<? super K> objectBytePredicate)
ImmutableObjectByteMap<K>
ImmutableObjectByteHashMap. reject(ObjectBytePredicate<? super K> objectBytePredicate)
ImmutableObjectByteMap<K>
ImmutableObjectByteSingletonMap. reject(ObjectBytePredicate<? super K> objectBytePredicate)
ImmutableObjectByteMap<K>
ImmutableObjectByteEmptyMap. select(ObjectBytePredicate<? super K> objectBytePredicate)
ImmutableObjectByteMap<K>
ImmutableObjectByteHashMap. select(ObjectBytePredicate<? super K> objectBytePredicate)
ImmutableObjectByteMap<K>
ImmutableObjectByteSingletonMap. select(ObjectBytePredicate<? super K> objectBytePredicate)
ImmutableObjectByteMap<K>
ImmutableObjectByteEmptyMap. toImmutable()
ImmutableObjectByteMap<K>
ImmutableObjectByteHashMap. toImmutable()
ImmutableObjectByteMap<K>
ImmutableObjectByteSingletonMap. toImmutable()
<K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactoryImpl. with()
<K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactoryImpl. with(K key, byte value)
<K> ImmutableObjectByteMap<K>
ImmutableObjectByteMapFactoryImpl. withAll(ObjectByteMap<? extends K> map)
-
Uses of ImmutableObjectByteMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableObjectByteMap Modifier and Type Method Description ImmutableObjectByteMap<K>
ObjectByteHashMap. toImmutable()
ImmutableObjectByteMap<K>
ObjectByteHashMapWithHashingStrategy. toImmutable()
ImmutableObjectByteMap<K>
SynchronizedObjectByteMap. toImmutable()
ImmutableObjectByteMap<K>
UnmodifiableObjectByteMap. toImmutable()
-