| 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 |
|---|---|
BooleanIterable |
RichIterable.collectBoolean(BooleanFunction<? super T> booleanFunction)
Returns a new primitive
boolean iterable with the results of applying the specified function on each element
of the source collection. |
LazyBooleanIterable |
LazyIterable.collectBoolean(BooleanFunction<? super T> booleanFunction)
Returns a lazy BooleanIterable which will transform the underlying iterable data to boolean values based on the booleanFunction.
|
<R extends MutableBooleanCollection> |
RichIterable.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target)
Same as
RichIterable.collectBoolean(BooleanFunction), except that the results are gathered into the specified target
collection. |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanBag |
MutableBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
ImmutableBooleanBag |
ImmutableBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
BooleanBag |
UnsortedBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanList |
MutableSortedBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
ImmutableBooleanList |
ImmutableSortedBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
BooleanList |
SortedBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanCollection |
MutableCollection.collectBoolean(BooleanFunction<? super T> booleanFunction)
Returns a new primitive
boolean iterable with the results of applying the specified function on each element
of the source collection. |
ImmutableBooleanCollection |
ImmutableCollection.collectBoolean(BooleanFunction<? super T> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
BooleanList |
ListIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
MutableBooleanList |
MutableList.collectBoolean(BooleanFunction<? super T> booleanFunction) |
ImmutableBooleanList |
ImmutableList.collectBoolean(BooleanFunction<? super T> booleanFunction) |
MutableList<T> |
MutableList.sortThisByBoolean(BooleanFunction<? super T> function) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableBooleanBag |
ImmutableMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
BooleanBag |
UnsortedMapIterable.collectBoolean(BooleanFunction<? super V> booleanFunction) |
BooleanList |
OrderedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
MutableBooleanList |
MutableOrderedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
MutableBooleanBag |
MutableMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
ImmutableBooleanList |
ImmutableOrderedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
BooleanBag |
PrimitiveObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
MutableBooleanBag |
MutablePrimitiveObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
ImmutableBooleanBag |
ImmutablePrimitiveObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
<P> boolean |
MutableByteBooleanMap.getIfAbsentPutWith(byte key,
BooleanFunction<? super P> function,
P parameter) |
<P> boolean |
MutableCharBooleanMap.getIfAbsentPutWith(char key,
BooleanFunction<? super P> function,
P parameter) |
<P> boolean |
MutableDoubleBooleanMap.getIfAbsentPutWith(double key,
BooleanFunction<? super P> function,
P parameter) |
<P> boolean |
MutableFloatBooleanMap.getIfAbsentPutWith(float key,
BooleanFunction<? super P> function,
P parameter) |
<P> boolean |
MutableIntBooleanMap.getIfAbsentPutWith(int key,
BooleanFunction<? super P> function,
P parameter) |
<P> boolean |
MutableObjectBooleanMap.getIfAbsentPutWith(K key,
BooleanFunction<? super P> function,
P parameter) |
<P> boolean |
MutableLongBooleanMap.getIfAbsentPutWith(long key,
BooleanFunction<? super P> function,
P parameter) |
<P> boolean |
MutableShortBooleanMap.getIfAbsentPutWith(short key,
BooleanFunction<? super P> function,
P parameter) |
boolean |
MutableObjectBooleanMap.getIfAbsentPutWithKey(K key,
BooleanFunction<? super K> function) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableBooleanList |
ImmutableSortedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
BooleanList |
SortedMapIterable.collectBoolean(BooleanFunction<? super V> booleanFunction) |
MutableBooleanList |
MutableSortedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
ReversibleBooleanIterable |
ReversibleIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
OrderedBooleanIterable |
OrderedIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableBooleanSet |
ImmutableSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
BooleanSet |
UnsortedSetIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
MutableBooleanSet |
MutableSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableBooleanList |
ImmutableSortedSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
BooleanList |
SortedSetIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
MutableBooleanList |
MutableSortedSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanStack |
MutableStack.collectBoolean(BooleanFunction<? super T> booleanFunction) |
ImmutableBooleanStack |
ImmutableStack.collectBoolean(BooleanFunction<? super T> booleanFunction) |
BooleanStack |
StackIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Copyright © 2004–2017. All rights reserved.