Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableObjectDoubleMap
-
Packages that use ImmutableObjectDoubleMap Package Description org.eclipse.collections.api.collection 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.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.collection.immutable This package contains implementations of theImmutableCollection
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.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.org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface. -
-
Uses of ImmutableObjectDoubleMap in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return ImmutableObjectDoubleMap Modifier and Type Method Description <V> ImmutableObjectDoubleMap<V>
ImmutableCollection. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> ImmutableObjectDoubleMap<V>
ImmutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of ImmutableObjectDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableObjectDoubleMap Modifier and Type Method Description <K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactory. empty()
<T,K>
ImmutableObjectDoubleMap<K>ImmutableObjectDoubleMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableObjectDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactory. of()
<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactory. of(K key, double value)
<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactory. ofAll(ObjectDoubleMap<? extends K> map)
<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactory. with()
<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactory. with(K key, double value)
<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactory. withAll(ObjectDoubleMap<? extends K> map)
-
Uses of ImmutableObjectDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableObjectDoubleMap Modifier and Type Method Description ImmutableObjectDoubleMap<V>
ImmutableDoubleObjectMap. flipUniqueValues()
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMap. newWithKeyValue(K 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.ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMap. 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.ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMap. 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.ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMap. reject(ObjectDoublePredicate<? super K> predicate)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMap. select(ObjectDoublePredicate<? super K> predicate)
<VV> ImmutableObjectDoubleMap<VV>
ImmutablePrimitiveObjectMap. sumByDouble(Function<? super V,? extends VV> groupBy, DoubleFunction<? super V> function)
<VV> ImmutableObjectDoubleMap<VV>
ImmutablePrimitiveObjectMap. sumByFloat(Function<? super V,? extends VV> groupBy, FloatFunction<? super V> function)
default ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMap. tap(DoubleProcedure procedure)
ImmutableObjectDoubleMap<K>
ObjectDoubleMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableObjectDoubleMap in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableObjectDoubleMap Modifier and Type Method Description <V> ImmutableObjectDoubleMap<V>
ImmutableStack. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> ImmutableObjectDoubleMap<V>
ImmutableStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of ImmutableObjectDoubleMap in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return ImmutableObjectDoubleMap Modifier and Type Method Description <V> ImmutableObjectDoubleMap<V>
AbstractImmutableBagIterable. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> ImmutableObjectDoubleMap<V>
AbstractImmutableBagIterable. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of ImmutableObjectDoubleMap in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable that return ImmutableObjectDoubleMap Modifier and Type Method Description <V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableBiMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableBiMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
-
Uses of ImmutableObjectDoubleMap in org.eclipse.collections.impl.collection.immutable
Methods in org.eclipse.collections.impl.collection.immutable that return ImmutableObjectDoubleMap Modifier and Type Method Description <V> ImmutableObjectDoubleMap<V>
AbstractImmutableCollection. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> ImmutableObjectDoubleMap<V>
AbstractImmutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of ImmutableObjectDoubleMap in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable that return ImmutableObjectDoubleMap Modifier and Type Method Description <V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
-
Uses of ImmutableObjectDoubleMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableObjectDoubleMap Modifier and Type Class Description class
AbstractImmutableObjectDoubleMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) class
ImmutableObjectDoubleEmptyMap<K>
ImmutableObjectDoubleEmptyMap is an optimization forImmutableObjectDoubleMap
of size 0.(package private) class
ImmutableObjectDoubleHashMap<K>
ImmutableObjectDoubleHashMap is the non-modifiable equivalent ofObjectDoubleHashMap
.(package private) class
ImmutableObjectDoubleSingletonMap<K>
ImmutableObjectDoubleSingletonMap is an optimization forImmutableObjectDoubleMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableObjectDoubleMap Modifier and Type Field Description (package private) static ImmutableObjectDoubleMap<?>
ImmutableObjectDoubleEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableObjectDoubleMap Modifier and Type Method Description <K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactoryImpl. empty()
ImmutableObjectDoubleMap<V>
ImmutableDoubleObjectEmptyMap. flipUniqueValues()
ImmutableObjectDoubleMap<V>
ImmutableDoubleObjectHashMap. flipUniqueValues()
ImmutableObjectDoubleMap<V>
ImmutableDoubleObjectSingletonMap. flipUniqueValues()
<T,K>
ImmutableObjectDoubleMap<K>ImmutableObjectDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, DoubleFunction<? super T> valueFunction)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleEmptyMap. newWithKeyValue(K key, double value)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleHashMap. newWithKeyValue(K key, double value)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleSingletonMap. newWithKeyValue(K key, double value)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleEmptyMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleHashMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleSingletonMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleEmptyMap. newWithoutKey(K key)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleHashMap. newWithoutKey(K key)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleSingletonMap. newWithoutKey(K key)
<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactoryImpl. of()
<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactoryImpl. of(K key, double value)
<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactoryImpl. ofAll(ObjectDoubleMap<? extends K> map)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleEmptyMap. reject(ObjectDoublePredicate<? super K> objectDoublePredicate)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleHashMap. reject(ObjectDoublePredicate<? super K> objectDoublePredicate)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleSingletonMap. reject(ObjectDoublePredicate<? super K> objectDoublePredicate)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleEmptyMap. select(ObjectDoublePredicate<? super K> objectDoublePredicate)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleHashMap. select(ObjectDoublePredicate<? super K> objectDoublePredicate)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleSingletonMap. select(ObjectDoublePredicate<? super K> objectDoublePredicate)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableByteObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableCharObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableDoubleObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableFloatObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableIntObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableLongObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableShortObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableByteObjectEmptyMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableCharObjectEmptyMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableDoubleObjectEmptyMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableFloatObjectEmptyMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableIntObjectEmptyMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableLongObjectEmptyMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableShortObjectEmptyMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableByteObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableCharObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableDoubleObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableFloatObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableIntObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableLongObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableShortObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableByteObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableCharObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableDoubleObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableFloatObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableIntObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableLongObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableShortObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleEmptyMap. toImmutable()
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleHashMap. toImmutable()
ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleSingletonMap. toImmutable()
<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactoryImpl. with()
<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactoryImpl. with(K key, double value)
<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactoryImpl. withAll(ObjectDoubleMap<? extends K> map)
-
Uses of ImmutableObjectDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableObjectDoubleMap Modifier and Type Method Description ImmutableObjectDoubleMap<K>
ObjectDoubleHashMap. toImmutable()
ImmutableObjectDoubleMap<K>
ObjectDoubleHashMapWithHashingStrategy. toImmutable()
ImmutableObjectDoubleMap<K>
SynchronizedObjectDoubleMap. toImmutable()
ImmutableObjectDoubleMap<K>
UnmodifiableObjectDoubleMap. toImmutable()
-
Uses of ImmutableObjectDoubleMap in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableObjectDoubleMap Modifier and Type Method Description <V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableSortedMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableSortedMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
-
Uses of ImmutableObjectDoubleMap in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return ImmutableObjectDoubleMap Modifier and Type Method Description <V> ImmutableObjectDoubleMap<V>
ImmutableArrayStack. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
Deprecated.<V> ImmutableObjectDoubleMap<V>
ImmutableEmptyStack. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> ImmutableObjectDoubleMap<V>
ImmutableNotEmptyStack. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> ImmutableObjectDoubleMap<V>
ImmutableArrayStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
Deprecated.<V> ImmutableObjectDoubleMap<V>
ImmutableEmptyStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> ImmutableObjectDoubleMap<V>
ImmutableNotEmptyStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-