Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableDoubleByteMap
Packages that use ImmutableDoubleByteMap
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 immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of ImmutableDoubleByteMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableDoubleByteMapModifier and TypeMethodDescriptionImmutableDoubleByteMapFactory.empty()
ImmutableDoubleByteMapFactory.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableDoubleByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleByteMapFactory.of()
ImmutableDoubleByteMapFactory.of
(double key, byte value) ImmutableDoubleByteMapFactory.ofAll
(DoubleByteMap map) ImmutableDoubleByteMapFactory.with()
ImmutableDoubleByteMapFactory.with
(double key, byte value) ImmutableDoubleByteMapFactory.withAll
(DoubleByteMap map) -
Uses of ImmutableDoubleByteMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableDoubleByteMapModifier and TypeMethodDescriptionImmutableByteDoubleMap.flipUniqueValues()
ImmutableDoubleByteMap.newWithKeyValue
(double 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.ImmutableDoubleByteMap.newWithoutAllKeys
(DoubleIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableDoubleByteMap.newWithoutKey
(double key) Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableDoubleByteMap.reject
(DoubleBytePredicate predicate) ImmutableDoubleByteMap.select
(DoubleBytePredicate predicate) DoubleByteMap.toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableDoubleByteMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableDoubleByteMapModifier and TypeClassDescription(package private) final class
ImmutableDoubleByteEmptyMap is an optimization forImmutableDoubleByteMap
of size 0.(package private) final class
ImmutableDoubleByteHashMap is the non-modifiable equivalent ofDoubleByteHashMap
.(package private) final class
ImmutableDoubleByteSingletonMap is an optimization forImmutableDoubleByteMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableDoubleByteMapModifier and TypeFieldDescription(package private) static final ImmutableDoubleByteMap
ImmutableDoubleByteEmptyMap.INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableDoubleByteMapModifier and TypeMethodDescriptionImmutableDoubleByteMapFactoryImpl.empty()
ImmutableByteDoubleEmptyMap.flipUniqueValues()
ImmutableByteDoubleHashMap.flipUniqueValues()
ImmutableByteDoubleSingletonMap.flipUniqueValues()
ImmutableDoubleByteMapFactoryImpl.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) ImmutableDoubleByteEmptyMap.newWithKeyValue
(double key, byte value) ImmutableDoubleByteHashMap.newWithKeyValue
(double key, byte value) ImmutableDoubleByteSingletonMap.newWithKeyValue
(double key, byte value) ImmutableDoubleByteEmptyMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleByteHashMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleByteSingletonMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleByteEmptyMap.newWithoutKey
(double key) ImmutableDoubleByteHashMap.newWithoutKey
(double key) ImmutableDoubleByteSingletonMap.newWithoutKey
(double key) ImmutableDoubleByteMapFactoryImpl.of()
ImmutableDoubleByteMapFactoryImpl.of
(double key, byte value) ImmutableDoubleByteMapFactoryImpl.ofAll
(DoubleByteMap map) ImmutableDoubleByteEmptyMap.reject
(DoubleBytePredicate predicate) ImmutableDoubleByteHashMap.reject
(DoubleBytePredicate predicate) ImmutableDoubleByteSingletonMap.reject
(DoubleBytePredicate predicate) ImmutableDoubleByteEmptyMap.select
(DoubleBytePredicate predicate) ImmutableDoubleByteHashMap.select
(DoubleBytePredicate predicate) ImmutableDoubleByteSingletonMap.select
(DoubleBytePredicate predicate) ImmutableDoubleByteEmptyMap.toImmutable()
ImmutableDoubleByteHashMap.toImmutable()
ImmutableDoubleByteSingletonMap.toImmutable()
ImmutableDoubleByteMapFactoryImpl.with()
ImmutableDoubleByteMapFactoryImpl.with
(double key, byte value) ImmutableDoubleByteMapFactoryImpl.withAll
(DoubleByteMap map) -
Uses of ImmutableDoubleByteMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableDoubleByteMapModifier and TypeMethodDescriptionDoubleByteHashMap.toImmutable()
SynchronizedDoubleByteMap.toImmutable()
UnmodifiableDoubleByteMap.toImmutable()