| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| org.eclipse.collections.api.collection.primitive |
This package contains mutable and immutable primitive collection API.
|
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
| 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.ordered.primitive | |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| org.eclipse.collections.api.stack.primitive |
This package contains mutable and immutable primitive stack API.
|
| Modifier and Type | Method and Description |
|---|---|
<V> LazyIterable<V> |
LazyLongIterable.collect(LongToObjectFunction<? extends V> function) |
<V> RichIterable<V> |
LongIterable.collect(LongToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
default <V,R extends Collection<V>> |
LongIterable.collect(LongToObjectFunction<? extends V> function,
R target)
Same as
LongIterable.collect(LongToObjectFunction) , only the results are added to the target Collection. |
<V> LazyIterable<V> |
LazyLongIterable.flatCollect(LongToObjectFunction<? extends Iterable<V>> function) |
default <V,R extends Collection<V>> |
LongIterable.flatCollect(LongToObjectFunction<? extends Iterable<V>> function,
R target)
flatCollect is a special case of LongIterable.collect(LongToObjectFunction). |
| Modifier and Type | Method and Description |
|---|---|
<V> MutableBag<V> |
MutableLongBag.collect(LongToObjectFunction<? extends V> function) |
<V> Bag<V> |
LongBag.collect(LongToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableLongBag.collect(LongToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> MutableCollection<V> |
MutableLongCollection.collect(LongToObjectFunction<? extends V> function) |
<V> ImmutableCollection<V> |
ImmutableLongCollection.collect(LongToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> MutableList<V> |
MutableLongList.collect(LongToObjectFunction<? extends V> function) |
<V> ListIterable<V> |
LongList.collect(LongToObjectFunction<? extends V> function) |
<V> ImmutableList<V> |
ImmutableLongList.collect(LongToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> MutableCollection<V> |
MutableObjectLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableCharLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableByteLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableShortLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableLongLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableDoubleLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableFloatLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableIntLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> Bag<V> |
LongValuesMap.collect(LongToObjectFunction<? extends V> function) |
<V> ImmutableCollection<V> |
ImmutableObjectLongMap.collect(LongToObjectFunction<? extends V> function) |
<V> MutableBag<V> |
MutableLongValuesMap.collect(LongToObjectFunction<? extends V> function) |
V |
MutableLongObjectMap.getIfAbsentPutWithKey(long key,
LongToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> ReversibleIterable<V> |
ReversibleLongIterable.collect(LongToObjectFunction<? extends V> function) |
<V> OrderedIterable<V> |
OrderedLongIterable.collect(LongToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> ImmutableSet<V> |
ImmutableLongSet.collect(LongToObjectFunction<? extends V> function) |
<V> SetIterable<V> |
LongSet.collect(LongToObjectFunction<? extends V> function) |
<V> MutableSet<V> |
MutableLongSet.collect(LongToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> MutableStack<V> |
MutableLongStack.collect(LongToObjectFunction<? extends V> function) |
<V> ImmutableStack<V> |
ImmutableLongStack.collect(LongToObjectFunction<? extends V> function) |
<V> StackIterable<V> |
LongStack.collect(LongToObjectFunction<? extends V> function) |
Copyright © 2004–2017. All rights reserved.