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.lazy |
This package contains implementations of the
LazyIterable 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.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and 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) |
Modifier and Type | Interface and 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.
|
Modifier and Type | Method and Description |
---|---|
ObjectDoubleMap<K> |
ObjectDoubleMap.reject(ObjectDoublePredicate<? super K> predicate) |
ObjectDoubleMap<K> |
ObjectDoubleMap.select(ObjectDoublePredicate<? super K> predicate) |
Modifier and Type | Method and Description |
---|---|
void |
MutableObjectDoubleMap.putAll(ObjectDoubleMap<? extends K> map) |
Modifier and Type | Method and Description |
---|---|
<V> ObjectDoubleMap<V> |
UnmodifiableRichIterable.sumByDouble(Function<? super T,? extends V> groupBy,
DoubleFunction<? super T> function) |
<V> ObjectDoubleMap<V> |
SynchronizedRichIterable.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) |
<V> ObjectDoubleMap<V> |
SynchronizedRichIterable.sumByFloat(Function<? super T,? extends V> groupBy,
FloatFunction<? super T> function) |
Modifier and Type | Method and 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) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractImmutableObjectDoubleMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.
|
Modifier and Type | Method and Description |
---|---|
<K> ImmutableObjectDoubleMap<K> |
ImmutableObjectDoubleMapFactoryImpl.ofAll(ObjectDoubleMap<? extends K> map) |
<K> ImmutableObjectDoubleMap<K> |
ImmutableObjectDoubleMapFactoryImpl.withAll(ObjectDoubleMap<? extends K> map) |
Modifier and Type | Class and 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 a
MutableObjectDoubleMap . |
class |
UnmodifiableObjectDoubleMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.
|
Modifier and Type | Method and Description |
---|---|
static <K> ObjectDoubleHashMapWithHashingStrategy<K> |
ObjectDoubleHashMapWithHashingStrategy.newMap(HashingStrategy<? super K> hashingStrategy,
ObjectDoubleMap<K> map) |
<K> MutableObjectDoubleMap<K> |
MutableObjectDoubleMapFactoryImpl.ofAll(ObjectDoubleMap<? extends K> map) |
void |
UnmodifiableObjectDoubleMap.putAll(ObjectDoubleMap<? extends K> map) |
void |
ObjectDoubleHashMapWithHashingStrategy.putAll(ObjectDoubleMap<? extends K> map) |
void |
SynchronizedObjectDoubleMap.putAll(ObjectDoubleMap<? extends K> map) |
void |
ObjectDoubleHashMap.putAll(ObjectDoubleMap<? extends K> map) |
<K> MutableObjectDoubleMap<K> |
MutableObjectDoubleMapFactoryImpl.withAll(ObjectDoubleMap<? extends K> map) |
Constructor and Description |
---|
ObjectDoubleHashMap(ObjectDoubleMap<? extends K> map) |
ObjectDoubleHashMapWithHashingStrategy(HashingStrategy<? super K> hashingStrategy,
ObjectDoubleMap<? extends K> map) |
Modifier and Type | Method and Description |
---|---|
static <T,V> ObjectDoubleMap<V> |
ParallelIterate.sumByDouble(Iterable<T> iterable,
Function<T,V> groupBy,
DoubleFunction<? super T> function) |
static <T,V> ObjectDoubleMap<V> |
ParallelIterate.sumByFloat(Iterable<T> iterable,
Function<T,V> groupBy,
FloatFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
static <T,V> ObjectDoubleMap<V> |
Iterate.sumByDouble(Iterable<T> iterable,
Function<T,V> groupBy,
DoubleFunction<? super T> function) |
static <V,T> ObjectDoubleMap<V> |
ListIterate.sumByDouble(List<T> list,
Function<T,V> groupBy,
DoubleFunction<? super T> function) |
static <V,T> ObjectDoubleMap<V> |
ArrayIterate.sumByDouble(T[] array,
Function<T,V> groupBy,
DoubleFunction<? super T> function) |
static <T,V> ObjectDoubleMap<V> |
Iterate.sumByFloat(Iterable<T> iterable,
Function<T,V> groupBy,
FloatFunction<? super T> function) |
static <V,T> ObjectDoubleMap<V> |
ListIterate.sumByFloat(List<T> list,
Function<T,V> groupBy,
FloatFunction<? super T> function) |
static <V,T> ObjectDoubleMap<V> |
ArrayIterate.sumByFloat(T[] array,
Function<T,V> groupBy,
FloatFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
static <V,T> ObjectDoubleMap<V> |
IterableIterate.sumByDouble(Iterable<T> iterable,
Function<T,V> groupBy,
DoubleFunction<? super T> function) |
static <V,T> ObjectDoubleMap<V> |
RandomAccessListIterate.sumByDouble(List<T> list,
Function<T,V> groupBy,
DoubleFunction<? super T> function) |
static <V,T> ObjectDoubleMap<V> |
IterableIterate.sumByFloat(Iterable<T> iterable,
Function<T,V> groupBy,
FloatFunction<? super T> function) |
static <V,T> ObjectDoubleMap<V> |
RandomAccessListIterate.sumByFloat(List<T> list,
Function<T,V> groupBy,
FloatFunction<? super T> function) |
Copyright © 2004–2016. All rights reserved.