| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
| org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.collection | |
| org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List. |
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| 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.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| org.eclipse.collections.api.ordered | |
| org.eclipse.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set. |
| org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
| org.eclipse.collections.api.stack |
This package contains interfaces for stack API.
|
| Modifier and Type | Method and Description |
|---|---|
DoubleIterable |
RichIterable.collectDouble(DoubleFunction<? super T> doubleFunction)
Returns a new primitive
double iterable with the results of applying the specified function on each element
of the source collection. |
LazyDoubleIterable |
LazyIterable.collectDouble(DoubleFunction<? super T> doubleFunction)
Returns a lazy DoubleIterable which will transform the underlying iterable data to double values based on the doubleFunction.
|
<R extends MutableDoubleCollection> |
RichIterable.collectDouble(DoubleFunction<? super T> doubleFunction,
R target)
Same as
RichIterable.collectDouble(DoubleFunction), except that the results are gathered into the specified target
collection. |
<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.
|
default DoubleSummaryStatistics |
RichIterable.summarizeDouble(DoubleFunction<? super T> function)
Returns the result of summarizing the value returned from applying the DoubleFunction to
each element of the iterable.
|
double |
RichIterable.sumOfDouble(DoubleFunction<? super T> function)
Returns the final double result of evaluating function for each element of the iterable and adding the results
together.
|
double |
ParallelIterable.sumOfDouble(DoubleFunction<? super T> function)
Returns the final double result of evaluating function for each element of the iterable in parallel
and adding the results together.
|
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleBag |
MutableBag.collectDouble(DoubleFunction<? super T> doubleFunction) |
ImmutableDoubleBag |
ImmutableBag.collectDouble(DoubleFunction<? super T> doubleFunction) |
DoubleBag |
UnsortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) |
default DoubleSummaryStatistics |
Bag.summarizeDouble(DoubleFunction<? super T> function) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleList |
MutableSortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) |
ImmutableDoubleList |
ImmutableSortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) |
DoubleList |
SortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleCollection |
MutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction)
Returns a new primitive
double iterable with the results of applying the specified function on each element
of the source collection. |
ImmutableDoubleCollection |
ImmutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction) |
<V> MutableObjectDoubleMap<V> |
MutableCollection.sumByDouble(Function<? super T,? extends V> groupBy,
DoubleFunction<? super T> function) |
<V> ImmutableObjectDoubleMap<V> |
ImmutableCollection.sumByDouble(Function<? super T,? extends V> groupBy,
DoubleFunction<? super T> function) |
| Modifier and Type | Method and Description |
|---|---|
DoubleList |
ListIterable.collectDouble(DoubleFunction<? super T> doubleFunction) |
MutableDoubleList |
MutableList.collectDouble(DoubleFunction<? super T> doubleFunction) |
ImmutableDoubleList |
ImmutableList.collectDouble(DoubleFunction<? super T> doubleFunction) |
MutableList<T> |
MutableList.sortThisByDouble(DoubleFunction<? super T> function) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableDoubleBag |
ImmutableMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
DoubleBag |
UnsortedMapIterable.collectDouble(DoubleFunction<? super V> doubleFunction) |
DoubleList |
OrderedMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
MutableDoubleList |
MutableOrderedMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
MutableDoubleBag |
MutableMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
ImmutableDoubleList |
ImmutableOrderedMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
<V1> MutableObjectDoubleMap<V1> |
MutableMapIterable.sumByDouble(Function<? super V,? extends V1> groupBy,
DoubleFunction<? super V> function) |
| Modifier and Type | Method and Description |
|---|---|
DoubleBag |
PrimitiveObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
MutableDoubleBag |
MutablePrimitiveObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
ImmutableDoubleBag |
ImmutablePrimitiveObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
<P> double |
MutableByteDoubleMap.getIfAbsentPutWith(byte key,
DoubleFunction<? super P> function,
P parameter) |
<P> double |
MutableCharDoubleMap.getIfAbsentPutWith(char key,
DoubleFunction<? super P> function,
P parameter) |
<P> double |
MutableDoubleDoubleMap.getIfAbsentPutWith(double key,
DoubleFunction<? super P> function,
P parameter) |
<P> double |
MutableFloatDoubleMap.getIfAbsentPutWith(float key,
DoubleFunction<? super P> function,
P parameter) |
<P> double |
MutableIntDoubleMap.getIfAbsentPutWith(int key,
DoubleFunction<? super P> function,
P parameter) |
<P> double |
MutableObjectDoubleMap.getIfAbsentPutWith(K key,
DoubleFunction<? super P> function,
P parameter) |
<P> double |
MutableLongDoubleMap.getIfAbsentPutWith(long key,
DoubleFunction<? super P> function,
P parameter) |
<P> double |
MutableShortDoubleMap.getIfAbsentPutWith(short key,
DoubleFunction<? super P> function,
P parameter) |
double |
MutableObjectDoubleMap.getIfAbsentPutWithKey(K key,
DoubleFunction<? super K> function) |
<VV> MutableObjectDoubleMap<VV> |
MutablePrimitiveObjectMap.sumByDouble(Function<? super V,? extends VV> groupBy,
DoubleFunction<? super V> function) |
<VV> ImmutableObjectDoubleMap<VV> |
ImmutablePrimitiveObjectMap.sumByDouble(Function<? super V,? extends VV> groupBy,
DoubleFunction<? super V> function) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableDoubleList |
ImmutableSortedMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
DoubleList |
SortedMapIterable.collectDouble(DoubleFunction<? super V> doubleFunction) |
MutableDoubleList |
MutableSortedMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
| Modifier and Type | Method and Description |
|---|---|
ReversibleDoubleIterable |
ReversibleIterable.collectDouble(DoubleFunction<? super T> doubleFunction) |
OrderedDoubleIterable |
OrderedIterable.collectDouble(DoubleFunction<? super T> doubleFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableDoubleSet |
ImmutableSet.collectDouble(DoubleFunction<? super T> doubleFunction) |
DoubleSet |
UnsortedSetIterable.collectDouble(DoubleFunction<? super T> doubleFunction) |
MutableDoubleSet |
MutableSet.collectDouble(DoubleFunction<? super T> doubleFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableDoubleList |
ImmutableSortedSet.collectDouble(DoubleFunction<? super T> doubleFunction) |
DoubleList |
SortedSetIterable.collectDouble(DoubleFunction<? super T> doubleFunction) |
MutableDoubleList |
MutableSortedSet.collectDouble(DoubleFunction<? super T> doubleFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleStack |
MutableStack.collectDouble(DoubleFunction<? super T> doubleFunction) |
ImmutableDoubleStack |
ImmutableStack.collectDouble(DoubleFunction<? super T> doubleFunction) |
DoubleStack |
StackIterable.collectDouble(DoubleFunction<? super T> doubleFunction) |
<V> MutableObjectDoubleMap<V> |
MutableStack.sumByDouble(Function<? super T,? extends V> groupBy,
DoubleFunction<? super T> function) |
<V> ImmutableObjectDoubleMap<V> |
ImmutableStack.sumByDouble(Function<? super T,? extends V> groupBy,
DoubleFunction<? super T> function) |
Copyright © 2004–2017. All rights reserved.