| 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> |
ByteIterable.collect(ByteToObjectFunction<? 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> |
LazyByteIterable.collect(ByteToObjectFunction<? extends V> function) |
default <V,R extends Collection<V>> |
ByteIterable.collect(ByteToObjectFunction<? extends V> function,
R target)
Same as
ByteIterable.collect(ByteToObjectFunction) , only the results are added to the target Collection. |
<V> LazyIterable<V> |
LazyByteIterable.flatCollect(ByteToObjectFunction<? extends Iterable<V>> function) |
default <V,R extends Collection<V>> |
ByteIterable.flatCollect(ByteToObjectFunction<? extends Iterable<V>> function,
R target)
flatCollect is a special case of ByteIterable.collect(ByteToObjectFunction). |
default <T> MutableByteList |
ByteIterable.toSortedListBy(ByteToObjectFunction<T> function)
Converts the collection to a MutableByteListImplementation sorted based on the natural order of the key returned
by
function. |
default <T> MutableByteList |
ByteIterable.toSortedListBy(ByteToObjectFunction<T> function,
Comparator<? super T> comparator)
Converts the collection to a MutableByteList implementation, which is sorted based on the key returned by
function using the provided comparator. |
| Modifier and Type | Method and Description |
|---|---|
<V> Bag<V> |
ByteBag.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableBag<V> |
MutableByteBag.collect(ByteToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableByteBag.collect(ByteToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> MutableCollection<V> |
MutableByteCollection.collect(ByteToObjectFunction<? extends V> function) |
<V> ImmutableCollection<V> |
ImmutableByteCollection.collect(ByteToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> ListIterable<V> |
ByteList.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableList<V> |
MutableByteList.collect(ByteToObjectFunction<? extends V> function) |
<V> ImmutableList<V> |
ImmutableByteList.collect(ByteToObjectFunction<? extends V> function) |
default <T> MutableByteList |
MutableByteList.sortThisBy(ByteToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned by
function. |
default <T> MutableByteList |
MutableByteList.sortThisBy(ByteToObjectFunction<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> |
ByteValuesMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableBag<V> |
MutableByteValuesMap.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableObjectByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableCharByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableByteByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableShortByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableLongByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableDoubleByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableFloatByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableIntByteMap.collect(ByteToObjectFunction<? extends V> function) |
<V> ImmutableCollection<V> |
ImmutableObjectByteMap.collect(ByteToObjectFunction<? extends V> function) |
V |
MutableByteObjectMap.getIfAbsentPutWithKey(byte key,
ByteToObjectFunction<? 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> |
ReversibleByteIterable.collect(ByteToObjectFunction<? extends V> function) |
<V> OrderedIterable<V> |
OrderedByteIterable.collect(ByteToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> SetIterable<V> |
ByteSet.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableSet<V> |
MutableByteSet.collect(ByteToObjectFunction<? extends V> function) |
<V> ImmutableSet<V> |
ImmutableByteSet.collect(ByteToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> StackIterable<V> |
ByteStack.collect(ByteToObjectFunction<? extends V> function) |
<V> MutableStack<V> |
MutableByteStack.collect(ByteToObjectFunction<? extends V> function) |
<V> ImmutableStack<V> |
ImmutableByteStack.collect(ByteToObjectFunction<? extends V> function) |
Copyright © 2004–2022. All rights reserved.