| 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 |
CharIterable.allSatisfy(CharPredicate predicate)
Returns true if all of the elements in the CharIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
CharIterable.anySatisfy(CharPredicate predicate)
Returns true if any of the elements in the CharIterable return true for the
specified predicate, otherwise returns false.
|
int |
CharIterable.count(CharPredicate predicate)
Returns a count of the number of elements in the CharIterable that return true for the
specified predicate.
|
char |
CharIterable.detectIfNone(CharPredicate predicate,
char ifNone) |
default boolean |
CharIterable.noneSatisfy(CharPredicate predicate)
Returns true if none of the elements in the CharIterable return true for the
specified predicate, otherwise returns false.
|
CharIterable |
CharIterable.reject(CharPredicate predicate)
Returns a new CharIterable with all of the elements in the CharIterable that
return false for the specified predicate.
|
LazyCharIterable |
LazyCharIterable.reject(CharPredicate predicate) |
default <R extends MutableCharCollection> |
CharIterable.reject(CharPredicate predicate,
R target)
Same as
CharIterable.reject(CharPredicate) , only the results are added to the target MutableCharCollection. |
CharIterable |
CharIterable.select(CharPredicate predicate)
Returns a new CharIterable with all of the elements in the CharIterable that
return true for the specified predicate.
|
LazyCharIterable |
LazyCharIterable.select(CharPredicate predicate) |
default <R extends MutableCharCollection> |
CharIterable.select(CharPredicate predicate,
R target)
Same as
CharIterable.select(CharPredicate) , only the results are added to the target MutableCharCollection. |
| Modifier and Type | Method and Description |
|---|---|
CharBag |
CharBag.reject(CharPredicate predicate) |
MutableCharBag |
MutableCharBag.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableCharBag.reject(CharPredicate predicate) |
CharBag |
CharBag.select(CharPredicate predicate) |
MutableCharBag |
MutableCharBag.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableCharBag.select(CharPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
MutableCharCollection |
MutableCharCollection.reject(CharPredicate predicate) |
ImmutableCharCollection |
ImmutableCharCollection.reject(CharPredicate predicate) |
default boolean |
MutableCharCollection.removeIf(CharPredicate predicate) |
MutableCharCollection |
MutableCharCollection.select(CharPredicate predicate) |
ImmutableCharCollection |
ImmutableCharCollection.select(CharPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
CharList |
CharList.reject(CharPredicate predicate) |
MutableCharList |
MutableCharList.reject(CharPredicate predicate) |
ImmutableCharList |
ImmutableCharList.reject(CharPredicate predicate) |
CharList |
CharList.select(CharPredicate predicate) |
MutableCharList |
MutableCharList.select(CharPredicate predicate) |
ImmutableCharList |
ImmutableCharList.select(CharPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
CharBag |
CharValuesMap.reject(CharPredicate predicate) |
MutableCharBag |
MutableCharValuesMap.reject(CharPredicate predicate) |
MutableCharCollection |
MutableObjectCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableCharCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableByteCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableShortCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableLongCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableDoubleCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableFloatCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableIntCharMap.reject(CharPredicate predicate) |
ImmutableCharCollection |
ImmutableObjectCharMap.reject(CharPredicate predicate) |
CharBag |
CharValuesMap.select(CharPredicate predicate) |
MutableCharBag |
MutableCharValuesMap.select(CharPredicate predicate) |
MutableCharCollection |
MutableObjectCharMap.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableCharCharMap.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableByteCharMap.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableShortCharMap.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableLongCharMap.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableDoubleCharMap.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableFloatCharMap.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableIntCharMap.select(CharPredicate predicate) |
ImmutableCharCollection |
ImmutableObjectCharMap.select(CharPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
ReversibleCharIterable |
ReversibleCharIterable.reject(CharPredicate predicate) |
OrderedCharIterable |
OrderedCharIterable.reject(CharPredicate predicate) |
ReversibleCharIterable |
ReversibleCharIterable.select(CharPredicate predicate) |
OrderedCharIterable |
OrderedCharIterable.select(CharPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
CharSet |
CharSet.reject(CharPredicate predicate) |
MutableCharSet |
MutableCharSet.reject(CharPredicate predicate) |
ImmutableCharSet |
ImmutableCharSet.reject(CharPredicate predicate) |
CharSet |
CharSet.select(CharPredicate predicate) |
MutableCharSet |
MutableCharSet.select(CharPredicate predicate) |
ImmutableCharSet |
ImmutableCharSet.select(CharPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
CharStack |
CharStack.reject(CharPredicate predicate) |
MutableCharStack |
MutableCharStack.reject(CharPredicate predicate) |
ImmutableCharStack |
ImmutableCharStack.reject(CharPredicate predicate) |
CharStack |
CharStack.select(CharPredicate predicate) |
MutableCharStack |
MutableCharStack.select(CharPredicate predicate) |
ImmutableCharStack |
ImmutableCharStack.select(CharPredicate predicate) |
Copyright © 2004–2022. All rights reserved.