Uses of Interface
org.eclipse.collections.api.map.primitive.ObjectDoubleMap
-
Packages that use ObjectDoubleMap Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.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 This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.collection org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterable
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.parallel This package contains classes which is used for parallel iteration through the containers.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of ObjectDoubleMap in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ObjectDoubleMap Modifier and Type Method Description <V> ObjectDoubleMap<V>
RichIterable. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
Groups and sums the values using the two specified functions.<V> ObjectDoubleMap<V>
RichIterable. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
Groups and sums the values using the two specified functions. -
Uses of ObjectDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive with parameters of type ObjectDoubleMap Modifier and Type Method Description <K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactory. ofAll(ObjectDoubleMap<? extends K> map)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. ofAll(ObjectDoubleMap<? extends K> map)
<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactory. withAll(ObjectDoubleMap<? extends K> map)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. withAll(ObjectDoubleMap<? extends K> map)
-
Uses of ObjectDoubleMap in org.eclipse.collections.api.map.primitive
Subinterfaces of ObjectDoubleMap in org.eclipse.collections.api.map.primitive Modifier and Type Interface Description interface
ImmutableObjectDoubleMap<K>
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interface
MutableObjectDoubleMap<K>
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive that return ObjectDoubleMap Modifier and Type Method Description ObjectDoubleMap<V>
DoubleObjectMap. flipUniqueValues()
Return the ObjectDoubleMap that is obtained by flipping the direction of this map and making the associations from value to key.ObjectDoubleMap<K>
ObjectDoubleMap. reject(ObjectDoublePredicate<? super K> predicate)
Return a copy of this map containing only the key/value pairs that do not match the predicate.ObjectDoubleMap<K>
ObjectDoubleMap. select(ObjectDoublePredicate<? super K> predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.default ObjectDoubleMap<K>
ObjectDoubleMap. tap(DoubleProcedure procedure)
Methods in org.eclipse.collections.api.map.primitive with parameters of type ObjectDoubleMap Modifier and Type Method Description void
MutableObjectDoubleMap. putAll(ObjectDoubleMap<? extends K> map)
Puts all of the key/value mappings from the specified map into this map. -
Uses of ObjectDoubleMap in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return ObjectDoubleMap Modifier and Type Method Description <V> ObjectDoubleMap<V>
UnmodifiableRichIterable. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> ObjectDoubleMap<V>
UnmodifiableRichIterable. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of ObjectDoubleMap in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return ObjectDoubleMap Modifier and Type Method Description <V> ObjectDoubleMap<V>
AbstractSynchronizedRichIterable. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> ObjectDoubleMap<V>
AbstractSynchronizedRichIterable. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of ObjectDoubleMap in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy that return ObjectDoubleMap Modifier and Type Method Description <V> ObjectDoubleMap<V>
AbstractLazyIterable. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> ObjectDoubleMap<V>
AbstractLazyIterable. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of ObjectDoubleMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ObjectDoubleMap 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 ObjectDoubleMap Modifier and Type Field Description private ObjectDoubleMap<V>
AbstractImmutableObjectDoubleMap.ImmutableObjectDoubleMapSerializationProxy. map
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ObjectDoubleMap Modifier and Type Method Description <K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactoryImpl. ofAll(ObjectDoubleMap<? extends K> map)
<K> ImmutableObjectDoubleMap<K>
ImmutableObjectDoubleMapFactoryImpl. withAll(ObjectDoubleMap<? extends K> map)
Constructors in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ObjectDoubleMap Constructor Description ImmutableObjectDoubleHashMap(ObjectDoubleMap<? extends K> delegate)
ImmutableObjectDoubleMapSerializationProxy(ObjectDoubleMap<V> map)
-
Uses of ObjectDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement ObjectDoubleMap Modifier and Type Class Description class
ObjectDoubleHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.class
ObjectDoubleHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.class
SynchronizedObjectDoubleMap<K>
A synchronized view of aMutableObjectDoubleMap
.class
UnmodifiableObjectDoubleMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ObjectDoubleMap Modifier and Type Method Description static <K> ObjectDoubleHashMapWithHashingStrategy<K>
ObjectDoubleHashMapWithHashingStrategy. newMap(HashingStrategy<? super K> hashingStrategy, ObjectDoubleMap<K> map)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. ofAll(ObjectDoubleMap<? extends K> map)
void
ObjectDoubleHashMap. putAll(ObjectDoubleMap<? extends K> map)
void
ObjectDoubleHashMapWithHashingStrategy. putAll(ObjectDoubleMap<? extends K> map)
void
SynchronizedObjectDoubleMap. putAll(ObjectDoubleMap<? extends K> map)
void
UnmodifiableObjectDoubleMap. putAll(ObjectDoubleMap<? extends K> map)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. withAll(ObjectDoubleMap<? extends K> map)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ObjectDoubleMap Constructor Description ObjectDoubleHashMap(ObjectDoubleMap<? extends K> map)
ObjectDoubleHashMapWithHashingStrategy(HashingStrategy<? super K> hashingStrategy, ObjectDoubleMap<? extends K> map)
-
Uses of ObjectDoubleMap in org.eclipse.collections.impl.parallel
Methods in org.eclipse.collections.impl.parallel that return ObjectDoubleMap Modifier and Type Method Description static <T,V>
ObjectDoubleMap<V>ParallelIterate. sumByDouble(java.lang.Iterable<T> iterable, Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
static <T,V>
ObjectDoubleMap<V>ParallelIterate. sumByFloat(java.lang.Iterable<T> iterable, Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of ObjectDoubleMap in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return ObjectDoubleMap Modifier and Type Method Description static <V,T>
ObjectDoubleMap<V>ArrayIterate. sumByDouble(T[] array, Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
static <T,V>
ObjectDoubleMap<V>Iterate. sumByDouble(java.lang.Iterable<T> iterable, Function<T,V> groupBy, DoubleFunction<? super T> function)
static <V,T>
ObjectDoubleMap<V>ListIterate. sumByDouble(java.util.List<T> list, Function<T,V> groupBy, DoubleFunction<? super T> function)
static <V,T>
ObjectDoubleMap<V>ArrayIterate. sumByFloat(T[] array, Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
static <T,V>
ObjectDoubleMap<V>Iterate. sumByFloat(java.lang.Iterable<T> iterable, Function<T,V> groupBy, FloatFunction<? super T> function)
static <V,T>
ObjectDoubleMap<V>ListIterate. sumByFloat(java.util.List<T> list, Function<T,V> groupBy, FloatFunction<? super T> function)
-
Uses of ObjectDoubleMap in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return ObjectDoubleMap Modifier and Type Method Description static <V,T>
ObjectDoubleMap<V>IterableIterate. sumByDouble(java.lang.Iterable<T> iterable, Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
static <V,T>
ObjectDoubleMap<V>RandomAccessListIterate. sumByDouble(java.util.List<T> list, Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
static <V,T>
ObjectDoubleMap<V>IterableIterate. sumByFloat(java.lang.Iterable<T> iterable, Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
static <V,T>
ObjectDoubleMap<V>RandomAccessListIterate. sumByFloat(java.util.List<T> list, Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-