| 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> RichIterable<V> |
BooleanIterable.collect(BooleanToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
<V> LazyIterable<V> |
LazyBooleanIterable.collect(BooleanToObjectFunction<? extends V> function) |
default <V,R extends Collection<V>> |
BooleanIterable.collect(BooleanToObjectFunction<? extends V> function,
R target)
Same as
BooleanIterable.collect(BooleanToObjectFunction) , only the results are added to the target Collection. |
<V> LazyIterable<V> |
LazyBooleanIterable.flatCollect(BooleanToObjectFunction<? extends Iterable<V>> function) |
default <V,R extends Collection<V>> |
BooleanIterable.flatCollect(BooleanToObjectFunction<? extends Iterable<V>> function,
R target)
flatCollect is a special case of BooleanIterable.collect(BooleanToObjectFunction). |
| Modifier and Type | Method and Description |
|---|---|
<V> Bag<V> |
BooleanBag.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableBag<V> |
MutableBooleanBag.collect(BooleanToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableBooleanBag.collect(BooleanToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> MutableCollection<V> |
MutableBooleanCollection.collect(BooleanToObjectFunction<? extends V> function) |
<V> ImmutableCollection<V> |
ImmutableBooleanCollection.collect(BooleanToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> ListIterable<V> |
BooleanList.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableList<V> |
MutableBooleanList.collect(BooleanToObjectFunction<? extends V> function) |
<V> ImmutableList<V> |
ImmutableBooleanList.collect(BooleanToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> Bag<V> |
BooleanValuesMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableBag<V> |
MutableBooleanValuesMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableObjectBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableCharBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableByteBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableShortBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableLongBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableDoubleBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableFloatBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableIntBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
<V> ImmutableCollection<V> |
ImmutableObjectBooleanMap.collect(BooleanToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> ReversibleIterable<V> |
ReversibleBooleanIterable.collect(BooleanToObjectFunction<? extends V> function) |
<V> OrderedIterable<V> |
OrderedBooleanIterable.collect(BooleanToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> SetIterable<V> |
BooleanSet.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableSet<V> |
MutableBooleanSet.collect(BooleanToObjectFunction<? extends V> function) |
<V> ImmutableSet<V> |
ImmutableBooleanSet.collect(BooleanToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> StackIterable<V> |
BooleanStack.collect(BooleanToObjectFunction<? extends V> function) |
<V> MutableStack<V> |
MutableBooleanStack.collect(BooleanToObjectFunction<? extends V> function) |
<V> ImmutableStack<V> |
ImmutableBooleanStack.collect(BooleanToObjectFunction<? extends V> function) |
Copyright © 2004–2023. All rights reserved.