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.
|
org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
org.eclipse.collections.impl.block.factory.primitive |
This package contains factory implementations for primitive functions, primitive predicates, primitive procedures and primitive comparators.
|
org.eclipse.collections.impl.block.function.primitive |
This package contains implementations of primitive functions.
|
org.eclipse.collections.impl.block.procedure.primitive |
This package contains implementations of primitive procedures.
|
org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
org.eclipse.collections.impl.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
org.eclipse.collections.impl.primitive | |
org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
org.eclipse.collections.impl.stack.primitive | |
org.eclipse.collections.impl.string.immutable | |
org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
org.eclipse.collections.impl.utility.internal.primitive | |
org.eclipse.collections.impl.utility.primitive |
Modifier and Type | Method | 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) |
|
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.
|
default <R extends MutableCharCollection> |
CharIterable.reject(CharPredicate predicate,
R target) |
Same as
CharIterable.reject(CharPredicate) , only the results are added to the target MutableCharCollection. |
LazyCharIterable |
LazyCharIterable.reject(CharPredicate predicate) |
|
CharIterable |
CharIterable.select(CharPredicate predicate) |
Returns a new CharIterable with all of the elements in the CharIterable that
return true for the specified 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. |
LazyCharIterable |
LazyCharIterable.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
CharBag |
CharBag.reject(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableCharBag.reject(CharPredicate predicate) |
|
MutableCharBag |
MutableCharBag.reject(CharPredicate predicate) |
|
CharBag |
CharBag.select(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableCharBag.select(CharPredicate predicate) |
|
MutableCharBag |
MutableCharBag.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableCharCollection |
ImmutableCharCollection.reject(CharPredicate predicate) |
|
MutableCharCollection |
MutableCharCollection.reject(CharPredicate predicate) |
|
ImmutableCharCollection |
ImmutableCharCollection.select(CharPredicate predicate) |
|
MutableCharCollection |
MutableCharCollection.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
CharList |
CharList.reject(CharPredicate predicate) |
|
ImmutableCharList |
ImmutableCharList.reject(CharPredicate predicate) |
|
MutableCharList |
MutableCharList.reject(CharPredicate predicate) |
|
CharList |
CharList.select(CharPredicate predicate) |
|
ImmutableCharList |
ImmutableCharList.select(CharPredicate predicate) |
|
MutableCharList |
MutableCharList.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
CharBag |
CharValuesMap.reject(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableByteCharMap.reject(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableCharCharMap.reject(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableDoubleCharMap.reject(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableFloatCharMap.reject(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableIntCharMap.reject(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableLongCharMap.reject(CharPredicate predicate) |
|
ImmutableCharCollection |
ImmutableObjectCharMap.reject(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableShortCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
MutableCharValuesMap.reject(CharPredicate predicate) |
|
MutableCharCollection |
MutableObjectCharMap.reject(CharPredicate predicate) |
|
CharBag |
CharValuesMap.select(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableByteCharMap.select(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableCharCharMap.select(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableDoubleCharMap.select(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableFloatCharMap.select(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableIntCharMap.select(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableLongCharMap.select(CharPredicate predicate) |
|
ImmutableCharCollection |
ImmutableObjectCharMap.select(CharPredicate predicate) |
|
ImmutableCharBag |
ImmutableShortCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
MutableCharValuesMap.select(CharPredicate predicate) |
|
MutableCharCollection |
MutableObjectCharMap.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
OrderedCharIterable |
OrderedCharIterable.reject(CharPredicate predicate) |
|
ReversibleCharIterable |
ReversibleCharIterable.reject(CharPredicate predicate) |
|
OrderedCharIterable |
OrderedCharIterable.select(CharPredicate predicate) |
|
ReversibleCharIterable |
ReversibleCharIterable.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
CharSet |
CharSet.reject(CharPredicate predicate) |
|
ImmutableCharSet |
ImmutableCharSet.reject(CharPredicate predicate) |
|
MutableCharSet |
MutableCharSet.reject(CharPredicate predicate) |
|
CharSet |
CharSet.select(CharPredicate predicate) |
|
ImmutableCharSet |
ImmutableCharSet.select(CharPredicate predicate) |
|
MutableCharSet |
MutableCharSet.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
CharStack |
CharStack.reject(CharPredicate predicate) |
|
ImmutableCharStack |
ImmutableCharStack.reject(CharPredicate predicate) |
|
MutableCharStack |
MutableCharStack.reject(CharPredicate predicate) |
|
CharStack |
CharStack.select(CharPredicate predicate) |
|
ImmutableCharStack |
ImmutableCharStack.select(CharPredicate predicate) |
|
MutableCharStack |
MutableCharStack.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
CharHashBag.allSatisfy(CharPredicate predicate) |
|
boolean |
CharHashBag.anySatisfy(CharPredicate predicate) |
|
int |
CharHashBag.count(CharPredicate predicate) |
|
char |
CharHashBag.detectIfNone(CharPredicate predicate,
char ifNone) |
|
boolean |
CharHashBag.noneSatisfy(CharPredicate predicate) |
|
CharHashBag |
CharHashBag.reject(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedCharBag.reject(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableCharBag.reject(CharPredicate predicate) |
|
CharHashBag |
CharHashBag.select(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedCharBag.select(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableCharBag.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
static CharPredicate |
CharPredicates.alwaysFalse() |
|
static CharPredicate |
CharPredicates.alwaysTrue() |
|
static CharPredicate |
CharPredicates.and(CharPredicate one,
CharPredicate two) |
|
static CharPredicate |
CharPredicates.equal(char expected) |
|
static CharPredicate |
CharPredicates.greaterThan(char expected) |
|
static CharPredicate |
CharPredicates.isDigit() |
|
static CharPredicate |
CharPredicates.isDigitOrDot() |
|
static CharPredicate |
CharPredicates.isLetter() |
|
static CharPredicate |
CharPredicates.isLetterOrDigit() |
|
static CharPredicate |
CharPredicates.isLowerCase() |
|
static CharPredicate |
CharPredicates.isUndefined() |
|
static CharPredicate |
CharPredicates.isUpperCase() |
|
static CharPredicate |
CharPredicates.isWhitespace() |
|
static CharPredicate |
CharPredicates.lessThan(char expected) |
|
static CharPredicate |
CharPredicates.not(CharPredicate negate) |
|
static CharPredicate |
CharPredicates.or(CharPredicate one,
CharPredicate two) |
Modifier and Type | Method | Description |
---|---|---|
static CharPredicate |
CharPredicates.and(CharPredicate one,
CharPredicate two) |
|
static CharPredicate |
CharPredicates.not(CharPredicate negate) |
|
static CharPredicate |
CharPredicates.or(CharPredicate one,
CharPredicate two) |
Modifier and Type | Method | Description |
---|---|---|
CharCaseFunction<V> |
CharCaseFunction.addCase(CharPredicate predicate,
CharToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
CharCaseProcedure |
CharCaseProcedure.addCase(CharPredicate predicate,
CharProcedure procedure) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
AbstractSynchronizedCharCollection.allSatisfy(CharPredicate predicate) |
|
boolean |
AbstractUnmodifiableCharCollection.allSatisfy(CharPredicate predicate) |
|
boolean |
AbstractSynchronizedCharCollection.anySatisfy(CharPredicate predicate) |
|
boolean |
AbstractUnmodifiableCharCollection.anySatisfy(CharPredicate predicate) |
|
int |
AbstractSynchronizedCharCollection.count(CharPredicate predicate) |
|
int |
AbstractUnmodifiableCharCollection.count(CharPredicate predicate) |
|
char |
AbstractSynchronizedCharCollection.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
AbstractUnmodifiableCharCollection.detectIfNone(CharPredicate predicate,
char ifNone) |
|
boolean |
AbstractSynchronizedCharCollection.noneSatisfy(CharPredicate predicate) |
|
boolean |
AbstractUnmodifiableCharCollection.noneSatisfy(CharPredicate predicate) |
|
MutableCharCollection |
AbstractSynchronizedCharCollection.reject(CharPredicate predicate) |
|
MutableCharCollection |
AbstractUnmodifiableCharCollection.reject(CharPredicate predicate) |
|
MutableCharCollection |
AbstractSynchronizedCharCollection.select(CharPredicate predicate) |
|
MutableCharCollection |
AbstractUnmodifiableCharCollection.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
AbstractLazyCharIterable.allSatisfy(CharPredicate predicate) |
|
boolean |
CollectCharIterable.allSatisfy(CharPredicate predicate) |
|
boolean |
LazyCharIterableAdapter.allSatisfy(CharPredicate predicate) |
|
boolean |
SelectCharIterable.allSatisfy(CharPredicate predicate) |
|
boolean |
TapCharIterable.allSatisfy(CharPredicate predicate) |
|
boolean |
AbstractLazyCharIterable.anySatisfy(CharPredicate predicate) |
|
boolean |
CollectCharIterable.anySatisfy(CharPredicate predicate) |
|
boolean |
LazyCharIterableAdapter.anySatisfy(CharPredicate predicate) |
|
boolean |
SelectCharIterable.anySatisfy(CharPredicate predicate) |
|
boolean |
TapCharIterable.anySatisfy(CharPredicate predicate) |
|
int |
AbstractLazyCharIterable.count(CharPredicate predicate) |
|
int |
CollectCharIterable.count(CharPredicate predicate) |
|
int |
LazyCharIterableAdapter.count(CharPredicate predicate) |
|
int |
SelectCharIterable.count(CharPredicate predicate) |
|
char |
AbstractLazyCharIterable.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
LazyCharIterableAdapter.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
TapCharIterable.detectIfNone(CharPredicate predicate,
char ifNone) |
|
boolean |
AbstractLazyCharIterable.noneSatisfy(CharPredicate predicate) |
|
boolean |
CollectCharIterable.noneSatisfy(CharPredicate predicate) |
|
boolean |
LazyCharIterableAdapter.noneSatisfy(CharPredicate predicate) |
|
boolean |
SelectCharIterable.noneSatisfy(CharPredicate predicate) |
|
boolean |
TapCharIterable.noneSatisfy(CharPredicate predicate) |
|
LazyCharIterable |
AbstractLazyCharIterable.reject(CharPredicate predicate) |
|
LazyCharIterable |
AbstractLazyCharIterable.select(CharPredicate predicate) |
Constructor | Description |
---|---|
SelectCharIterable(CharIterable delegate,
CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
CharArrayList.allSatisfy(CharPredicate predicate) |
|
boolean |
CharArrayList.anySatisfy(CharPredicate predicate) |
|
int |
CharArrayList.count(CharPredicate predicate) |
|
char |
CharArrayList.detectIfNone(CharPredicate predicate,
char ifNone) |
|
boolean |
CharArrayList.noneSatisfy(CharPredicate predicate) |
|
CharArrayList |
CharArrayList.reject(CharPredicate predicate) |
|
<R extends MutableCharCollection> |
CharArrayList.reject(CharPredicate predicate,
R target) |
|
MutableCharList |
SynchronizedCharList.reject(CharPredicate predicate) |
|
MutableCharList |
UnmodifiableCharList.reject(CharPredicate predicate) |
|
CharArrayList |
CharArrayList.select(CharPredicate predicate) |
|
<R extends MutableCharCollection> |
CharArrayList.select(CharPredicate predicate,
R target) |
|
MutableCharList |
SynchronizedCharList.select(CharPredicate predicate) |
|
MutableCharList |
UnmodifiableCharList.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
AbstractMutableCharKeySet.allSatisfy(CharPredicate predicate) |
|
boolean |
AbstractMutableCharValuesMap.allSatisfy(CharPredicate predicate) |
|
boolean |
ObjectCharHashMap.allSatisfy(CharPredicate predicate) |
|
boolean |
ObjectCharHashMapWithHashingStrategy.allSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedByteCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedCharCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedDoubleCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedFloatCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedIntCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedLongCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedObjectCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedShortCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableByteCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableCharCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableDoubleCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableFloatCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableIntCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableLongCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableObjectCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableShortCharMap.allSatisfy(CharPredicate predicate) |
|
boolean |
AbstractMutableCharKeySet.anySatisfy(CharPredicate predicate) |
|
boolean |
AbstractMutableCharValuesMap.anySatisfy(CharPredicate predicate) |
|
boolean |
ObjectCharHashMap.anySatisfy(CharPredicate predicate) |
|
boolean |
ObjectCharHashMapWithHashingStrategy.anySatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedByteCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedCharCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedDoubleCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedFloatCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedIntCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedLongCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedObjectCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedShortCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableByteCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableCharCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableDoubleCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableFloatCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableIntCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableLongCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableObjectCharMap.anySatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableShortCharMap.anySatisfy(CharPredicate predicate) |
|
int |
AbstractMutableCharKeySet.count(CharPredicate predicate) |
|
int |
AbstractMutableCharValuesMap.count(CharPredicate predicate) |
|
int |
ObjectCharHashMap.count(CharPredicate predicate) |
|
int |
ObjectCharHashMapWithHashingStrategy.count(CharPredicate predicate) |
|
int |
SynchronizedByteCharMap.count(CharPredicate predicate) |
|
int |
SynchronizedCharCharMap.count(CharPredicate predicate) |
|
int |
SynchronizedDoubleCharMap.count(CharPredicate predicate) |
|
int |
SynchronizedFloatCharMap.count(CharPredicate predicate) |
|
int |
SynchronizedIntCharMap.count(CharPredicate predicate) |
|
int |
SynchronizedLongCharMap.count(CharPredicate predicate) |
|
int |
SynchronizedObjectCharMap.count(CharPredicate predicate) |
|
int |
SynchronizedShortCharMap.count(CharPredicate predicate) |
|
int |
UnmodifiableByteCharMap.count(CharPredicate predicate) |
|
int |
UnmodifiableCharCharMap.count(CharPredicate predicate) |
|
int |
UnmodifiableDoubleCharMap.count(CharPredicate predicate) |
|
int |
UnmodifiableFloatCharMap.count(CharPredicate predicate) |
|
int |
UnmodifiableIntCharMap.count(CharPredicate predicate) |
|
int |
UnmodifiableLongCharMap.count(CharPredicate predicate) |
|
int |
UnmodifiableObjectCharMap.count(CharPredicate predicate) |
|
int |
UnmodifiableShortCharMap.count(CharPredicate predicate) |
|
char |
AbstractMutableCharKeySet.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
AbstractMutableCharValuesMap.detectIfNone(CharPredicate predicate,
char value) |
|
char |
ObjectCharHashMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
ObjectCharHashMapWithHashingStrategy.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
SynchronizedByteCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
SynchronizedCharCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
SynchronizedDoubleCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
SynchronizedFloatCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
SynchronizedIntCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
SynchronizedLongCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
SynchronizedObjectCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
SynchronizedShortCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
UnmodifiableByteCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
UnmodifiableCharCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
UnmodifiableDoubleCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
UnmodifiableFloatCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
UnmodifiableIntCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
UnmodifiableLongCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
UnmodifiableObjectCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
UnmodifiableShortCharMap.detectIfNone(CharPredicate predicate,
char ifNone) |
|
boolean |
AbstractMutableCharKeySet.noneSatisfy(CharPredicate predicate) |
|
boolean |
AbstractMutableCharValuesMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
ObjectCharHashMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
ObjectCharHashMapWithHashingStrategy.noneSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedByteCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedCharCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedDoubleCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedFloatCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedIntCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedLongCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedObjectCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedShortCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableByteCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableCharCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableDoubleCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableFloatCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableIntCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableLongCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableObjectCharMap.noneSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableShortCharMap.noneSatisfy(CharPredicate predicate) |
|
MutableCharSet |
AbstractMutableCharKeySet.reject(CharPredicate predicate) |
|
MutableCharBag |
AbstractMutableCharValuesMap.reject(CharPredicate predicate) |
|
MutableCharCollection |
ObjectCharHashMap.reject(CharPredicate predicate) |
|
MutableCharCollection |
ObjectCharHashMapWithHashingStrategy.reject(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedByteCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedCharCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedDoubleCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedFloatCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedIntCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedLongCharMap.reject(CharPredicate predicate) |
|
MutableCharCollection |
SynchronizedObjectCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedShortCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableByteCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableCharCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableDoubleCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableFloatCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableIntCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableLongCharMap.reject(CharPredicate predicate) |
|
MutableCharCollection |
UnmodifiableObjectCharMap.reject(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableShortCharMap.reject(CharPredicate predicate) |
|
MutableCharSet |
AbstractMutableCharKeySet.select(CharPredicate predicate) |
|
MutableCharBag |
AbstractMutableCharValuesMap.select(CharPredicate predicate) |
|
MutableCharCollection |
ObjectCharHashMap.select(CharPredicate predicate) |
|
MutableCharCollection |
ObjectCharHashMapWithHashingStrategy.select(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedByteCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedCharCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedDoubleCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedFloatCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedIntCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedLongCharMap.select(CharPredicate predicate) |
|
MutableCharCollection |
SynchronizedObjectCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
SynchronizedShortCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableByteCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableCharCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableDoubleCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableFloatCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableIntCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableLongCharMap.select(CharPredicate predicate) |
|
MutableCharCollection |
UnmodifiableObjectCharMap.select(CharPredicate predicate) |
|
MutableCharBag |
UnmodifiableShortCharMap.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
SynchronizedCharIterable.allSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedCharIterable.anySatisfy(CharPredicate predicate) |
|
int |
SynchronizedCharIterable.count(CharPredicate predicate) |
|
char |
SynchronizedCharIterable.detectIfNone(CharPredicate predicate,
char ifNone) |
|
boolean |
SynchronizedCharIterable.noneSatisfy(CharPredicate predicate) |
|
CharIterable |
SynchronizedCharIterable.reject(CharPredicate predicate) |
|
CharIterable |
SynchronizedCharIterable.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
CharHashSet.allSatisfy(CharPredicate predicate) |
|
boolean |
CharHashSet.anySatisfy(CharPredicate predicate) |
|
int |
CharHashSet.count(CharPredicate predicate) |
|
char |
CharHashSet.detectIfNone(CharPredicate predicate,
char ifNone) |
|
boolean |
CharHashSet.noneSatisfy(CharPredicate predicate) |
|
CharHashSet |
CharHashSet.reject(CharPredicate predicate) |
|
<R extends MutableCharCollection> |
CharHashSet.reject(CharPredicate predicate,
R target) |
|
MutableCharSet |
SynchronizedCharSet.reject(CharPredicate predicate) |
|
MutableCharSet |
UnmodifiableCharSet.reject(CharPredicate predicate) |
|
CharHashSet |
CharHashSet.select(CharPredicate predicate) |
|
<R extends MutableCharCollection> |
CharHashSet.select(CharPredicate predicate,
R target) |
|
MutableCharSet |
SynchronizedCharSet.select(CharPredicate predicate) |
|
MutableCharSet |
UnmodifiableCharSet.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
SynchronizedCharStack.allSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableCharStack.allSatisfy(CharPredicate predicate) |
|
boolean |
SynchronizedCharStack.anySatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableCharStack.anySatisfy(CharPredicate predicate) |
|
int |
SynchronizedCharStack.count(CharPredicate predicate) |
|
int |
UnmodifiableCharStack.count(CharPredicate predicate) |
|
char |
SynchronizedCharStack.detectIfNone(CharPredicate predicate,
char ifNone) |
|
char |
UnmodifiableCharStack.detectIfNone(CharPredicate predicate,
char ifNone) |
|
boolean |
SynchronizedCharStack.noneSatisfy(CharPredicate predicate) |
|
boolean |
UnmodifiableCharStack.noneSatisfy(CharPredicate predicate) |
|
MutableCharStack |
CharArrayStack.reject(CharPredicate predicate) |
|
MutableCharStack |
SynchronizedCharStack.reject(CharPredicate predicate) |
|
MutableCharStack |
UnmodifiableCharStack.reject(CharPredicate predicate) |
|
MutableCharStack |
CharArrayStack.select(CharPredicate predicate) |
|
MutableCharStack |
SynchronizedCharStack.select(CharPredicate predicate) |
|
MutableCharStack |
UnmodifiableCharStack.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
AbstractCharStack.allSatisfy(CharPredicate predicate) |
|
boolean |
AbstractCharStack.anySatisfy(CharPredicate predicate) |
|
int |
AbstractCharStack.count(CharPredicate predicate) |
|
char |
AbstractCharStack.detectIfNone(CharPredicate predicate,
char ifNone) |
|
boolean |
AbstractCharStack.noneSatisfy(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
CharAdapter.allSatisfy(CharPredicate predicate) |
|
boolean |
CharAdapter.anySatisfy(CharPredicate predicate) |
|
int |
CharAdapter.count(CharPredicate predicate) |
|
char |
CharAdapter.detectIfNone(CharPredicate predicate,
char ifNone) |
|
boolean |
CharAdapter.noneSatisfy(CharPredicate predicate) |
|
CharAdapter |
CharAdapter.reject(CharPredicate predicate) |
|
CharAdapter |
CharAdapter.select(CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
static boolean |
StringIterate.allSatisfy(java.lang.String string,
CharPredicate predicate) |
Deprecated.
since 7.0. Use
StringIterate.allSatisfyChar(String, CharPredicate) instead. |
static boolean |
StringIterate.allSatisfyChar(java.lang.String string,
CharPredicate predicate) |
|
static boolean |
StringIterate.anySatisfy(java.lang.String string,
CharPredicate predicate) |
Deprecated.
since 7.0. Use
StringIterate.anySatisfyChar(String, CharPredicate) instead. |
static boolean |
StringIterate.anySatisfyChar(java.lang.String string,
CharPredicate predicate) |
|
static int |
StringIterate.count(java.lang.String string,
CharPredicate predicate) |
Deprecated.
since 7.0. Use
StringIterate.countChar(String, CharPredicate) instead. |
static int |
StringIterate.countChar(java.lang.String string,
CharPredicate predicate) |
Count the number of elements that return true for the specified
predicate . |
static java.lang.Character |
StringIterate.detect(java.lang.String string,
CharPredicate predicate) |
Deprecated.
since 7.0. Use
StringIterate.detectChar(String, CharPredicate) instead. |
static java.lang.Character |
StringIterate.detectChar(java.lang.String string,
CharPredicate predicate) |
Find the first element that returns true for the specified
predicate . |
static java.lang.Character |
StringIterate.detectCharIfNone(java.lang.String string,
CharPredicate predicate,
char resultIfNone) |
Find the first element that returns true for the specified
predicate . |
static java.lang.Character |
StringIterate.detectCharIfNone(java.lang.String string,
CharPredicate predicate,
java.lang.String resultIfNone) |
Find the first element that returns true for the specified
predicate . |
static java.lang.Character |
StringIterate.detectIfNone(java.lang.String string,
CharPredicate predicate,
char resultIfNone) |
Deprecated.
since 7.0. Use
StringIterate.detectCharIfNone(String, CharPredicate, char) instead. |
static java.lang.Character |
StringIterate.detectIfNone(java.lang.String string,
CharPredicate predicate,
java.lang.String resultIfNone) |
Deprecated.
since 7.0. Use
StringIterate.detectCharIfNone(String, CharPredicate, String) instead. |
static boolean |
StringIterate.noneSatisfy(java.lang.String string,
CharPredicate predicate) |
Deprecated.
since 7.0. Use
StringIterate.noneSatisfyChar(String, CharPredicate) instead. |
static boolean |
StringIterate.noneSatisfyChar(java.lang.String string,
CharPredicate predicate) |
|
static java.lang.String |
StringIterate.reject(java.lang.String string,
CharPredicate predicate) |
Deprecated.
since 7.0. Use
StringIterate.rejectChar(String, CharPredicate) instead. |
static java.lang.String |
StringIterate.rejectChar(java.lang.String string,
CharPredicate predicate) |
|
static java.lang.String |
StringIterate.select(java.lang.String string,
CharPredicate predicate) |
Deprecated.
since 7.0. Use
StringIterate.selectChar(String, CharPredicate) instead. |
static java.lang.String |
StringIterate.selectChar(java.lang.String string,
CharPredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
static boolean |
CharIterableIterate.allSatisfy(CharIterable iterable,
CharPredicate predicate) |
|
static boolean |
CharIteratorIterate.allSatisfy(CharIterator iterator,
CharPredicate predicate) |
|
static boolean |
CharIterableIterate.anySatisfy(CharIterable iterable,
CharPredicate predicate) |
|
static boolean |
CharIteratorIterate.anySatisfy(CharIterator iterator,
CharPredicate predicate) |
|
static int |
CharIterableIterate.count(CharIterable iterable,
CharPredicate predicate) |
|
static int |
CharIteratorIterate.count(CharIterator iterator,
CharPredicate predicate) |
|
static char |
CharIterableIterate.detectIfNone(CharIterable iterable,
CharPredicate predicate,
char ifNone) |
|
static char |
CharIteratorIterate.detectIfNone(CharIterator iterator,
CharPredicate predicate,
char ifNone) |
|
static boolean |
CharIterableIterate.noneSatisfy(CharIterable iterable,
CharPredicate predicate) |
|
static boolean |
CharIteratorIterate.noneSatisfy(CharIterator iterator,
CharPredicate predicate) |
|
static <R extends MutableCharCollection> |
CharIterableIterate.reject(CharIterable iterable,
CharPredicate predicate,
R targetCollection) |
|
static <R extends MutableCharCollection> |
CharIteratorIterate.reject(CharIterator iterator,
CharPredicate predicate,
R targetCollection) |
|
static <R extends MutableCharCollection> |
CharIterableIterate.select(CharIterable iterable,
CharPredicate predicate,
R targetCollection) |
|
static <R extends MutableCharCollection> |
CharIteratorIterate.select(CharIterator iterator,
CharPredicate predicate,
R targetCollection) |
Modifier and Type | Method | Description |
---|---|---|
static <V> LazyIterable<V> |
LazyCharIterate.collectIf(CharIterable iterable,
CharPredicate predicate,
CharToObjectFunction<? extends V> function) |
Creates a deferred filtering and transforming char iterable for the specified char iterable.
|
static LazyCharIterable |
LazyCharIterate.select(CharIterable iterable,
CharPredicate predicate) |
Creates a deferred filtering char iterable for the specified char iterable.
|
Copyright © 2004–2017. All rights reserved.