| 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> |
FloatIterable.collect(FloatToObjectFunction<? 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> |
LazyFloatIterable.collect(FloatToObjectFunction<? extends V> function) |
default <V,R extends Collection<V>> |
FloatIterable.collect(FloatToObjectFunction<? extends V> function,
R target)
Same as
FloatIterable.collect(FloatToObjectFunction) , only the results are added to the target Collection. |
<V> LazyIterable<V> |
LazyFloatIterable.flatCollect(FloatToObjectFunction<? extends Iterable<V>> function) |
default <V,R extends Collection<V>> |
FloatIterable.flatCollect(FloatToObjectFunction<? extends Iterable<V>> function,
R target)
flatCollect is a special case of FloatIterable.collect(FloatToObjectFunction). |
| Modifier and Type | Method and Description |
|---|---|
<V> Bag<V> |
FloatBag.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableBag<V> |
MutableFloatBag.collect(FloatToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableFloatBag.collect(FloatToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> MutableCollection<V> |
MutableFloatCollection.collect(FloatToObjectFunction<? extends V> function) |
<V> ImmutableCollection<V> |
ImmutableFloatCollection.collect(FloatToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> ListIterable<V> |
FloatList.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableList<V> |
MutableFloatList.collect(FloatToObjectFunction<? extends V> function) |
<V> ImmutableList<V> |
ImmutableFloatList.collect(FloatToObjectFunction<? extends V> function) |
default <T> MutableFloatList |
MutableFloatList.sortThisBy(FloatToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned by
function. |
default <T> MutableFloatList |
MutableFloatList.sortThisBy(FloatToObjectFunction<T> function,
Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned by
function using the provided comparator. |
| Modifier and Type | Method and Description |
|---|---|
<V> Bag<V> |
FloatValuesMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableBag<V> |
MutableFloatValuesMap.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableObjectFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableCharFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableByteFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableShortFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableLongFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableDoubleFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableFloatFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableIntFloatMap.collect(FloatToObjectFunction<? extends V> function) |
<V> ImmutableCollection<V> |
ImmutableObjectFloatMap.collect(FloatToObjectFunction<? extends V> function) |
V |
MutableFloatObjectMap.getIfAbsentPutWithKey(float key,
FloatToObjectFunction<? extends V> function)
Retrieves the value associated with the key if one exists; if it does not,
associates the result of invoking the value function with the key.
|
| Modifier and Type | Method and Description |
|---|---|
<V> ReversibleIterable<V> |
ReversibleFloatIterable.collect(FloatToObjectFunction<? extends V> function) |
<V> OrderedIterable<V> |
OrderedFloatIterable.collect(FloatToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> SetIterable<V> |
FloatSet.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableSet<V> |
MutableFloatSet.collect(FloatToObjectFunction<? extends V> function) |
<V> ImmutableSet<V> |
ImmutableFloatSet.collect(FloatToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> StackIterable<V> |
FloatStack.collect(FloatToObjectFunction<? extends V> function) |
<V> MutableStack<V> |
MutableFloatStack.collect(FloatToObjectFunction<? extends V> function) |
<V> ImmutableStack<V> |
ImmutableFloatStack.collect(FloatToObjectFunction<? extends V> function) |
Copyright © 2004–2020. All rights reserved.