| 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 |
|---|---|
IntIterable |
RichIterable.collectInt(IntFunction<? super T> intFunction)
Returns a new primitive
int iterable with the results of applying the specified function on each element
of the source collection. |
LazyIntIterable |
LazyIterable.collectInt(IntFunction<? super T> intFunction)
Returns a lazy IntIterable which will transform the underlying iterable data to int values based on the intFunction.
|
<R extends MutableIntCollection> |
RichIterable.collectInt(IntFunction<? super T> intFunction,
R target)
Same as
RichIterable.collectInt(IntFunction), except that the results are gathered into the specified target
collection. |
<V> ObjectLongMap<V> |
RichIterable.sumByInt(Function<? super T,? extends V> groupBy,
IntFunction<? super T> function)
Groups and sums the values using the two specified functions.
|
default IntSummaryStatistics |
RichIterable.summarizeInt(IntFunction<? super T> function)
Returns the result of summarizing the value returned from applying the IntFunction to
each element of the iterable.
|
long |
RichIterable.sumOfInt(IntFunction<? super T> function)
Returns the final long result of evaluating function for each element of the iterable and adding the results
together.
|
long |
ParallelIterable.sumOfInt(IntFunction<? super T> function)
Returns the final long result of evaluating function for each element of the iterable in parallel
and adding the results together.
|
| Modifier and Type | Method and Description |
|---|---|
MutableIntBag |
MutableBag.collectInt(IntFunction<? super T> intFunction) |
ImmutableIntBag |
ImmutableBag.collectInt(IntFunction<? super T> intFunction) |
IntBag |
UnsortedBag.collectInt(IntFunction<? super T> intFunction) |
default IntSummaryStatistics |
Bag.summarizeInt(IntFunction<? super T> function) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntList |
MutableSortedBag.collectInt(IntFunction<? super T> intFunction) |
ImmutableIntList |
ImmutableSortedBag.collectInt(IntFunction<? super T> intFunction) |
IntList |
SortedBag.collectInt(IntFunction<? super T> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntCollection |
MutableCollection.collectInt(IntFunction<? super T> intFunction)
Returns a new primitive
int iterable with the results of applying the specified function on each element
of the source collection. |
ImmutableIntCollection |
ImmutableCollection.collectInt(IntFunction<? super T> intFunction) |
<V> MutableObjectLongMap<V> |
MutableCollection.sumByInt(Function<? super T,? extends V> groupBy,
IntFunction<? super T> function) |
<V> ImmutableObjectLongMap<V> |
ImmutableCollection.sumByInt(Function<? super T,? extends V> groupBy,
IntFunction<? super T> function) |
| Modifier and Type | Method and Description |
|---|---|
IntList |
ListIterable.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
MutableList.collectInt(IntFunction<? super T> intFunction) |
ImmutableIntList |
ImmutableList.collectInt(IntFunction<? super T> intFunction) |
MutableList<T> |
MutableList.sortThisByInt(IntFunction<? super T> function) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntBag |
ImmutableMap.collectInt(IntFunction<? super V> intFunction) |
IntBag |
UnsortedMapIterable.collectInt(IntFunction<? super V> intFunction) |
IntList |
OrderedMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntList |
MutableOrderedMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntBag |
MutableMap.collectInt(IntFunction<? super V> intFunction) |
ImmutableIntList |
ImmutableOrderedMap.collectInt(IntFunction<? super V> intFunction) |
<V1> MutableObjectLongMap<V1> |
MutableMapIterable.sumByInt(Function<? super V,? extends V1> groupBy,
IntFunction<? super V> function) |
| Modifier and Type | Method and Description |
|---|---|
IntBag |
PrimitiveObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntBag |
MutablePrimitiveObjectMap.collectInt(IntFunction<? super V> intFunction) |
ImmutableIntBag |
ImmutablePrimitiveObjectMap.collectInt(IntFunction<? super V> intFunction) |
<P> int |
MutableByteIntMap.getIfAbsentPutWith(byte key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableCharIntMap.getIfAbsentPutWith(char key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableDoubleIntMap.getIfAbsentPutWith(double key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableFloatIntMap.getIfAbsentPutWith(float key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableIntIntMap.getIfAbsentPutWith(int key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableObjectIntMap.getIfAbsentPutWith(K key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableLongIntMap.getIfAbsentPutWith(long key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableShortIntMap.getIfAbsentPutWith(short key,
IntFunction<? super P> function,
P parameter) |
int |
MutableObjectIntMap.getIfAbsentPutWithKey(K key,
IntFunction<? super K> function) |
<VV> MutableObjectLongMap<VV> |
MutablePrimitiveObjectMap.sumByInt(Function<? super V,? extends VV> groupBy,
IntFunction<? super V> function) |
<VV> ImmutableObjectLongMap<VV> |
ImmutablePrimitiveObjectMap.sumByInt(Function<? super V,? extends VV> groupBy,
IntFunction<? super V> function) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntList |
ImmutableSortedMap.collectInt(IntFunction<? super V> intFunction) |
IntList |
SortedMapIterable.collectInt(IntFunction<? super V> intFunction) |
MutableIntList |
MutableSortedMap.collectInt(IntFunction<? super V> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
ReversibleIntIterable |
ReversibleIterable.collectInt(IntFunction<? super T> intFunction) |
OrderedIntIterable |
OrderedIterable.collectInt(IntFunction<? super T> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntSet |
ImmutableSet.collectInt(IntFunction<? super T> intFunction) |
IntSet |
UnsortedSetIterable.collectInt(IntFunction<? super T> intFunction) |
MutableIntSet |
MutableSet.collectInt(IntFunction<? super T> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntList |
ImmutableSortedSet.collectInt(IntFunction<? super T> intFunction) |
IntList |
SortedSetIterable.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
MutableSortedSet.collectInt(IntFunction<? super T> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntStack |
MutableStack.collectInt(IntFunction<? super T> intFunction) |
ImmutableIntStack |
ImmutableStack.collectInt(IntFunction<? super T> intFunction) |
IntStack |
StackIterable.collectInt(IntFunction<? super T> intFunction) |
<V> MutableObjectLongMap<V> |
MutableStack.sumByInt(Function<? super T,? extends V> groupBy,
IntFunction<? super T> function) |
<V> ImmutableObjectLongMap<V> |
ImmutableStack.sumByInt(Function<? super T,? extends V> groupBy,
IntFunction<? super T> function) |
Copyright © 2004–2017. All rights reserved.