| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
| org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.collection | |
| org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List. |
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| 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.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| org.eclipse.collections.api.ordered | |
| org.eclipse.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set. |
| org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
| org.eclipse.collections.api.stack |
This package contains interfaces for stack API.
|
| Modifier and Type | Method and Description |
|---|---|
CharIterable |
RichIterable.collectChar(CharFunction<? super T> charFunction)
Returns a new primitive
char iterable with the results of applying the specified function on each element
of the source collection. |
LazyCharIterable |
LazyIterable.collectChar(CharFunction<? super T> charFunction)
Returns a lazy CharIterable which will transform the underlying iterable data to char values based on the charFunction.
|
<R extends MutableCharCollection> |
RichIterable.collectChar(CharFunction<? super T> charFunction,
R target)
Same as
RichIterable.collectChar(CharFunction), except that the results are gathered into the specified target
collection. |
| Modifier and Type | Method and Description |
|---|---|
MutableCharBag |
MutableBag.collectChar(CharFunction<? super T> charFunction) |
ImmutableCharBag |
ImmutableBag.collectChar(CharFunction<? super T> charFunction) |
CharBag |
UnsortedBag.collectChar(CharFunction<? super T> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableCharList |
MutableSortedBag.collectChar(CharFunction<? super T> charFunction) |
ImmutableCharList |
ImmutableSortedBag.collectChar(CharFunction<? super T> charFunction) |
CharList |
SortedBag.collectChar(CharFunction<? super T> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableCharCollection |
MutableCollection.collectChar(CharFunction<? super T> charFunction)
Returns a new primitive
char iterable with the results of applying the specified function on each element
of the source collection. |
ImmutableCharCollection |
ImmutableCollection.collectChar(CharFunction<? super T> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
CharList |
ListIterable.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
MutableList.collectChar(CharFunction<? super T> charFunction) |
ImmutableCharList |
ImmutableList.collectChar(CharFunction<? super T> charFunction) |
MutableList<T> |
MutableList.sortThisByChar(CharFunction<? super T> function) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableCharBag |
ImmutableMap.collectChar(CharFunction<? super V> charFunction) |
CharBag |
UnsortedMapIterable.collectChar(CharFunction<? super V> charFunction) |
CharList |
OrderedMap.collectChar(CharFunction<? super V> charFunction) |
MutableCharList |
MutableOrderedMap.collectChar(CharFunction<? super V> charFunction) |
MutableCharBag |
MutableMap.collectChar(CharFunction<? super V> charFunction) |
ImmutableCharList |
ImmutableOrderedMap.collectChar(CharFunction<? super V> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
CharBag |
PrimitiveObjectMap.collectChar(CharFunction<? super V> charFunction) |
MutableCharBag |
MutablePrimitiveObjectMap.collectChar(CharFunction<? super V> charFunction) |
ImmutableCharBag |
ImmutablePrimitiveObjectMap.collectChar(CharFunction<? super V> charFunction) |
<P> char |
MutableByteCharMap.getIfAbsentPutWith(byte key,
CharFunction<? super P> function,
P parameter) |
<P> char |
MutableCharCharMap.getIfAbsentPutWith(char key,
CharFunction<? super P> function,
P parameter) |
<P> char |
MutableDoubleCharMap.getIfAbsentPutWith(double key,
CharFunction<? super P> function,
P parameter) |
<P> char |
MutableFloatCharMap.getIfAbsentPutWith(float key,
CharFunction<? super P> function,
P parameter) |
<P> char |
MutableIntCharMap.getIfAbsentPutWith(int key,
CharFunction<? super P> function,
P parameter) |
<P> char |
MutableObjectCharMap.getIfAbsentPutWith(K key,
CharFunction<? super P> function,
P parameter) |
<P> char |
MutableLongCharMap.getIfAbsentPutWith(long key,
CharFunction<? super P> function,
P parameter) |
<P> char |
MutableShortCharMap.getIfAbsentPutWith(short key,
CharFunction<? super P> function,
P parameter) |
char |
MutableObjectCharMap.getIfAbsentPutWithKey(K key,
CharFunction<? super K> function) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableCharList |
ImmutableSortedMap.collectChar(CharFunction<? super V> charFunction) |
CharList |
SortedMapIterable.collectChar(CharFunction<? super V> charFunction) |
MutableCharList |
MutableSortedMap.collectChar(CharFunction<? super V> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
ReversibleCharIterable |
ReversibleIterable.collectChar(CharFunction<? super T> charFunction) |
OrderedCharIterable |
OrderedIterable.collectChar(CharFunction<? super T> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableCharSet |
ImmutableSet.collectChar(CharFunction<? super T> charFunction) |
CharSet |
UnsortedSetIterable.collectChar(CharFunction<? super T> charFunction) |
MutableCharSet |
MutableSet.collectChar(CharFunction<? super T> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableCharList |
ImmutableSortedSet.collectChar(CharFunction<? super T> charFunction) |
CharList |
SortedSetIterable.collectChar(CharFunction<? super T> charFunction) |
MutableCharList |
MutableSortedSet.collectChar(CharFunction<? super T> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableCharStack |
MutableStack.collectChar(CharFunction<? super T> charFunction) |
ImmutableCharStack |
ImmutableStack.collectChar(CharFunction<? super T> charFunction) |
CharStack |
StackIterable.collectChar(CharFunction<? super T> charFunction) |
Copyright © 2004–2017. All rights reserved.