| 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> |
CharIterable.collect(CharToObjectFunction<? 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> |
LazyCharIterable.collect(CharToObjectFunction<? extends V> function) |
default <V,R extends Collection<V>> |
CharIterable.collect(CharToObjectFunction<? extends V> function,
R target)
Same as
CharIterable.collect(CharToObjectFunction) , only the results are added to the target Collection. |
<V> LazyIterable<V> |
LazyCharIterable.flatCollect(CharToObjectFunction<? extends Iterable<V>> function) |
default <V,R extends Collection<V>> |
CharIterable.flatCollect(CharToObjectFunction<? extends Iterable<V>> function,
R target)
flatCollect is a special case of CharIterable.collect(CharToObjectFunction). |
default <T> MutableCharList |
CharIterable.toSortedListBy(CharToObjectFunction<T> function)
Converts the collection to a MutableCharListImplementation sorted based on the natural order of the key returned
by
function. |
default <T> MutableCharList |
CharIterable.toSortedListBy(CharToObjectFunction<T> function,
Comparator<? super T> comparator)
Converts the collection to a MutableCharList implementation, which is sorted based on the key returned by
function using the provided comparator. |
| Modifier and Type | Method and Description |
|---|---|
<V> Bag<V> |
CharBag.collect(CharToObjectFunction<? extends V> function) |
<V> MutableBag<V> |
MutableCharBag.collect(CharToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableCharBag.collect(CharToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> MutableCollection<V> |
MutableCharCollection.collect(CharToObjectFunction<? extends V> function) |
<V> ImmutableCollection<V> |
ImmutableCharCollection.collect(CharToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> ListIterable<V> |
CharList.collect(CharToObjectFunction<? extends V> function) |
<V> MutableList<V> |
MutableCharList.collect(CharToObjectFunction<? extends V> function) |
<V> ImmutableList<V> |
ImmutableCharList.collect(CharToObjectFunction<? extends V> function) |
default <T> MutableCharList |
MutableCharList.sortThisBy(CharToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned by
function. |
default <T> MutableCharList |
MutableCharList.sortThisBy(CharToObjectFunction<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> |
CharValuesMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableBag<V> |
MutableCharValuesMap.collect(CharToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableObjectCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableCharCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableByteCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableShortCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableLongCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableDoubleCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableFloatCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableIntCharMap.collect(CharToObjectFunction<? extends V> function) |
<V> ImmutableCollection<V> |
ImmutableObjectCharMap.collect(CharToObjectFunction<? extends V> function) |
V |
MutableCharObjectMap.getIfAbsentPutWithKey(char key,
CharToObjectFunction<? 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> |
ReversibleCharIterable.collect(CharToObjectFunction<? extends V> function) |
<V> OrderedIterable<V> |
OrderedCharIterable.collect(CharToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> SetIterable<V> |
CharSet.collect(CharToObjectFunction<? extends V> function) |
<V> MutableSet<V> |
MutableCharSet.collect(CharToObjectFunction<? extends V> function) |
<V> ImmutableSet<V> |
ImmutableCharSet.collect(CharToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> StackIterable<V> |
CharStack.collect(CharToObjectFunction<? extends V> function) |
<V> MutableStack<V> |
MutableCharStack.collect(CharToObjectFunction<? extends V> function) |
<V> ImmutableStack<V> |
ImmutableCharStack.collect(CharToObjectFunction<? extends V> function) |
Copyright © 2004–2023. All rights reserved.