Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableDoubleDoubleMap
-
Packages that use ImmutableDoubleDoubleMap 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 ImmutableDoubleDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableDoubleDoubleMap Modifier and Type Method Description ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactory. empty()
<T> ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableDoubleDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactory. of()
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactory. of(double key, double value)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactory. ofAll(DoubleDoubleMap map)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactory. with()
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactory. with(double key, double value)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactory. withAll(DoubleDoubleMap map)
-
Uses of ImmutableDoubleDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableDoubleDoubleMap Modifier and Type Method Description ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMap. flipUniqueValues()
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMap. newWithKeyValue(double key, double 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.ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMap. 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.ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMap. 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.ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMap. reject(DoubleDoublePredicate predicate)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMap. select(DoubleDoublePredicate predicate)
ImmutableDoubleDoubleMap
DoubleDoubleMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableDoubleDoubleMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableDoubleDoubleMap Modifier and Type Class Description (package private) class
ImmutableDoubleDoubleEmptyMap
ImmutableDoubleDoubleEmptyMap is an optimization forImmutableDoubleDoubleMap
of size 0.(package private) class
ImmutableDoubleDoubleHashMap
ImmutableDoubleDoubleHashMap is the non-modifiable equivalent ofDoubleDoubleHashMap
.(package private) class
ImmutableDoubleDoubleSingletonMap
ImmutableDoubleDoubleSingletonMap is an optimization forImmutableDoubleDoubleMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableDoubleDoubleMap Modifier and Type Field Description (package private) static ImmutableDoubleDoubleMap
ImmutableDoubleDoubleEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableDoubleDoubleMap Modifier and Type Method Description ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactoryImpl. empty()
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleEmptyMap. flipUniqueValues()
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleHashMap. flipUniqueValues()
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleSingletonMap. flipUniqueValues()
<T> ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleEmptyMap. newWithKeyValue(double key, double value)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleHashMap. newWithKeyValue(double key, double value)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleSingletonMap. newWithKeyValue(double key, double value)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleEmptyMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleHashMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleSingletonMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleEmptyMap. newWithoutKey(double key)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleHashMap. newWithoutKey(double key)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleSingletonMap. newWithoutKey(double key)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactoryImpl. of()
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactoryImpl. of(double key, double value)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactoryImpl. ofAll(DoubleDoubleMap map)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleEmptyMap. reject(DoubleDoublePredicate predicate)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleHashMap. reject(DoubleDoublePredicate predicate)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleSingletonMap. reject(DoubleDoublePredicate predicate)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleEmptyMap. select(DoubleDoublePredicate predicate)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleHashMap. select(DoubleDoublePredicate predicate)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleSingletonMap. select(DoubleDoublePredicate predicate)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleEmptyMap. toImmutable()
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleHashMap. toImmutable()
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleSingletonMap. toImmutable()
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactoryImpl. with()
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactoryImpl. with(double key, double value)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMapFactoryImpl. withAll(DoubleDoubleMap map)
-
Uses of ImmutableDoubleDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableDoubleDoubleMap Modifier and Type Method Description ImmutableDoubleDoubleMap
DoubleDoubleHashMap. toImmutable()
ImmutableDoubleDoubleMap
SynchronizedDoubleDoubleMap. toImmutable()
ImmutableDoubleDoubleMap
UnmodifiableDoubleDoubleMap. toImmutable()
-