| 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 |
|---|---|
boolean |
BooleanIterable.allSatisfy(BooleanPredicate predicate)
Returns true if all of the elements in the BooleanIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
BooleanIterable.anySatisfy(BooleanPredicate predicate)
Returns true if any of the elements in the BooleanIterable return true for the
specified predicate, otherwise returns false.
|
int |
BooleanIterable.count(BooleanPredicate predicate)
Returns a count of the number of elements in the BooleanIterable that return true for the
specified predicate.
|
boolean |
BooleanIterable.detectIfNone(BooleanPredicate predicate,
boolean ifNone) |
default boolean |
BooleanIterable.noneSatisfy(BooleanPredicate predicate)
Returns true if none of the elements in the BooleanIterable return true for the
specified predicate, otherwise returns false.
|
BooleanIterable |
BooleanIterable.reject(BooleanPredicate predicate)
Returns a new BooleanIterable with all of the elements in the BooleanIterable that
return false for the specified predicate.
|
LazyBooleanIterable |
LazyBooleanIterable.reject(BooleanPredicate predicate) |
default <R extends MutableBooleanCollection> |
BooleanIterable.reject(BooleanPredicate predicate,
R target)
Same as
BooleanIterable.reject(BooleanPredicate) , only the results are added to the target MutableBooleanCollection. |
BooleanIterable |
BooleanIterable.select(BooleanPredicate predicate)
Returns a new BooleanIterable with all of the elements in the BooleanIterable that
return true for the specified predicate.
|
LazyBooleanIterable |
LazyBooleanIterable.select(BooleanPredicate predicate) |
default <R extends MutableBooleanCollection> |
BooleanIterable.select(BooleanPredicate predicate,
R target)
Same as
BooleanIterable.select(BooleanPredicate) , only the results are added to the target MutableBooleanCollection. |
| Modifier and Type | Method and Description |
|---|---|
BooleanBag |
BooleanBag.reject(BooleanPredicate predicate) |
MutableBooleanBag |
MutableBooleanBag.reject(BooleanPredicate predicate) |
ImmutableBooleanBag |
ImmutableBooleanBag.reject(BooleanPredicate predicate) |
BooleanBag |
BooleanBag.select(BooleanPredicate predicate) |
MutableBooleanBag |
MutableBooleanBag.select(BooleanPredicate predicate) |
ImmutableBooleanBag |
ImmutableBooleanBag.select(BooleanPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanCollection |
MutableBooleanCollection.reject(BooleanPredicate predicate) |
ImmutableBooleanCollection |
ImmutableBooleanCollection.reject(BooleanPredicate predicate) |
default boolean |
MutableBooleanCollection.removeIf(BooleanPredicate predicate) |
MutableBooleanCollection |
MutableBooleanCollection.select(BooleanPredicate predicate) |
ImmutableBooleanCollection |
ImmutableBooleanCollection.select(BooleanPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
BooleanList |
BooleanList.reject(BooleanPredicate predicate) |
MutableBooleanList |
MutableBooleanList.reject(BooleanPredicate predicate) |
ImmutableBooleanList |
ImmutableBooleanList.reject(BooleanPredicate predicate) |
BooleanList |
BooleanList.select(BooleanPredicate predicate) |
MutableBooleanList |
MutableBooleanList.select(BooleanPredicate predicate) |
ImmutableBooleanList |
ImmutableBooleanList.select(BooleanPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
ReversibleBooleanIterable |
ReversibleBooleanIterable.reject(BooleanPredicate predicate) |
OrderedBooleanIterable |
OrderedBooleanIterable.reject(BooleanPredicate predicate) |
ReversibleBooleanIterable |
ReversibleBooleanIterable.select(BooleanPredicate predicate) |
OrderedBooleanIterable |
OrderedBooleanIterable.select(BooleanPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
BooleanSet |
BooleanSet.reject(BooleanPredicate predicate) |
MutableBooleanSet |
MutableBooleanSet.reject(BooleanPredicate predicate) |
ImmutableBooleanSet |
ImmutableBooleanSet.reject(BooleanPredicate predicate) |
BooleanSet |
BooleanSet.select(BooleanPredicate predicate) |
MutableBooleanSet |
MutableBooleanSet.select(BooleanPredicate predicate) |
ImmutableBooleanSet |
ImmutableBooleanSet.select(BooleanPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
BooleanStack |
BooleanStack.reject(BooleanPredicate predicate) |
MutableBooleanStack |
MutableBooleanStack.reject(BooleanPredicate predicate) |
ImmutableBooleanStack |
ImmutableBooleanStack.reject(BooleanPredicate predicate) |
BooleanStack |
BooleanStack.select(BooleanPredicate predicate) |
MutableBooleanStack |
MutableBooleanStack.select(BooleanPredicate predicate) |
ImmutableBooleanStack |
ImmutableBooleanStack.select(BooleanPredicate predicate) |
Copyright © 2004–2022. All rights reserved.