Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.CharPredicate
Packages that use CharPredicate
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains mutable and immutable primitive stack API.
This package contains implementations of the mutable primitive bag interfaces.
This package contains factory implementations for primitive functions, primitive predicates, primitive procedures and primitive comparators.
This package contains implementations of primitive functions.
This package contains implementations of primitive procedures.
This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
-
Uses of CharPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type CharPredicateModifier and TypeMethodDescriptionbooleanCharIterable.allSatisfy(CharPredicate predicate) Returns true if all of the elements in the CharIterable return true for the specified predicate, otherwise returns false.booleanCharIterable.anySatisfy(CharPredicate predicate) Returns true if any of the elements in the CharIterable return true for the specified predicate, otherwise returns false.intCharIterable.count(CharPredicate predicate) Returns a count of the number of elements in the CharIterable that return true for the specified predicate.charCharIterable.detectIfNone(CharPredicate predicate, char ifNone) default booleanCharIterable.noneSatisfy(CharPredicate predicate) Returns true if none of the elements in the CharIterable return true for the specified predicate, otherwise returns false.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>
RCharIterable.reject(CharPredicate predicate, R target) Same asCharIterable.reject(CharPredicate), only the results are added to the target MutableCharCollection.LazyCharIterable.reject(CharPredicate predicate) 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>
RCharIterable.select(CharPredicate predicate, R target) Same asCharIterable.select(CharPredicate), only the results are added to the target MutableCharCollection.LazyCharIterable.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionCharBag.reject(CharPredicate predicate) ImmutableCharBag.reject(CharPredicate predicate) MutableCharBag.reject(CharPredicate predicate) CharBag.select(CharPredicate predicate) ImmutableCharBag.select(CharPredicate predicate) MutableCharBag.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionImmutableCharCollection.reject(CharPredicate predicate) MutableCharCollection.reject(CharPredicate predicate) default booleanMutableCharCollection.removeIf(CharPredicate predicate) ImmutableCharCollection.select(CharPredicate predicate) MutableCharCollection.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionCharList.reject(CharPredicate predicate) ImmutableCharList.reject(CharPredicate predicate) MutableCharList.reject(CharPredicate predicate) CharList.select(CharPredicate predicate) ImmutableCharList.select(CharPredicate predicate) MutableCharList.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionCharValuesMap.reject(CharPredicate predicate) ImmutableByteCharMap.reject(CharPredicate predicate) ImmutableCharCharMap.reject(CharPredicate predicate) ImmutableDoubleCharMap.reject(CharPredicate predicate) ImmutableFloatCharMap.reject(CharPredicate predicate) ImmutableIntCharMap.reject(CharPredicate predicate) ImmutableLongCharMap.reject(CharPredicate predicate) ImmutableObjectCharMap.reject(CharPredicate predicate) ImmutableShortCharMap.reject(CharPredicate predicate) MutableCharValuesMap.reject(CharPredicate predicate) MutableObjectCharMap.reject(CharPredicate predicate) CharValuesMap.select(CharPredicate predicate) ImmutableByteCharMap.select(CharPredicate predicate) ImmutableCharCharMap.select(CharPredicate predicate) ImmutableDoubleCharMap.select(CharPredicate predicate) ImmutableFloatCharMap.select(CharPredicate predicate) ImmutableIntCharMap.select(CharPredicate predicate) ImmutableLongCharMap.select(CharPredicate predicate) ImmutableObjectCharMap.select(CharPredicate predicate) ImmutableShortCharMap.select(CharPredicate predicate) MutableCharValuesMap.select(CharPredicate predicate) MutableObjectCharMap.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionOrderedCharIterable.reject(CharPredicate predicate) ReversibleCharIterable.reject(CharPredicate predicate) OrderedCharIterable.select(CharPredicate predicate) ReversibleCharIterable.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionCharSet.reject(CharPredicate predicate) ImmutableCharSet.reject(CharPredicate predicate) MutableCharSet.reject(CharPredicate predicate) CharSet.select(CharPredicate predicate) ImmutableCharSet.select(CharPredicate predicate) MutableCharSet.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionCharStack.reject(CharPredicate predicate) ImmutableCharStack.reject(CharPredicate predicate) MutableCharStack.reject(CharPredicate predicate) CharStack.select(CharPredicate predicate) ImmutableCharStack.select(CharPredicate predicate) MutableCharStack.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionbooleanCharHashBag.allSatisfy(CharPredicate predicate) booleanCharHashBag.anySatisfy(CharPredicate predicate) intCharHashBag.count(CharPredicate predicate) charCharHashBag.detectIfNone(CharPredicate predicate, char ifNone) booleanCharHashBag.noneSatisfy(CharPredicate predicate) CharHashBag.reject(CharPredicate predicate) SynchronizedCharBag.reject(CharPredicate predicate) UnmodifiableCharBag.reject(CharPredicate predicate) booleanCharHashBag.removeIf(CharPredicate predicate) CharHashBag.select(CharPredicate predicate) SynchronizedCharBag.select(CharPredicate predicate) UnmodifiableCharBag.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.block.factory.primitive
Methods in org.eclipse.collections.impl.block.factory.primitive that return CharPredicateModifier and TypeMethodDescriptionstatic CharPredicateCharPredicates.alwaysFalse()static CharPredicateCharPredicates.alwaysTrue()static CharPredicateCharPredicates.and(CharPredicate one, CharPredicate two) static CharPredicateCharPredicates.equal(char expected) static CharPredicateCharPredicates.greaterThan(char expected) static CharPredicateCharPredicates.isDigit()static CharPredicateCharPredicates.isDigitOrDot()static CharPredicateCharPredicates.isLetter()static CharPredicateCharPredicates.isLetterOrDigit()static CharPredicateCharPredicates.isLowerCase()static CharPredicateCharPredicates.isUndefined()static CharPredicateCharPredicates.isUpperCase()static CharPredicateCharPredicates.isWhitespace()static CharPredicateCharPredicates.lessThan(char expected) static CharPredicateCharPredicates.not(CharPredicate negate) static CharPredicateCharPredicates.or(CharPredicate one, CharPredicate two) Methods in org.eclipse.collections.impl.block.factory.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionstatic CharPredicateCharPredicates.and(CharPredicate one, CharPredicate two) static CharPredicateCharPredicates.not(CharPredicate negate) static CharPredicateCharPredicates.or(CharPredicate one, CharPredicate two) -
Uses of CharPredicate in org.eclipse.collections.impl.block.function.primitive
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionCharCaseFunction.addCase(CharPredicate predicate, CharToObjectFunction<? extends V> function) -
Uses of CharPredicate in org.eclipse.collections.impl.block.procedure.primitive
Methods in org.eclipse.collections.impl.block.procedure.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionCharCaseProcedure.addCase(CharPredicate predicate, CharProcedure procedure) -
Uses of CharPredicate in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionbooleanAbstractSynchronizedCharCollection.allSatisfy(CharPredicate predicate) booleanAbstractUnmodifiableCharCollection.allSatisfy(CharPredicate predicate) booleanAbstractSynchronizedCharCollection.anySatisfy(CharPredicate predicate) booleanAbstractUnmodifiableCharCollection.anySatisfy(CharPredicate predicate) intAbstractSynchronizedCharCollection.count(CharPredicate predicate) intAbstractUnmodifiableCharCollection.count(CharPredicate predicate) charAbstractSynchronizedCharCollection.detectIfNone(CharPredicate predicate, char ifNone) charAbstractUnmodifiableCharCollection.detectIfNone(CharPredicate predicate, char ifNone) booleanAbstractSynchronizedCharCollection.noneSatisfy(CharPredicate predicate) booleanAbstractUnmodifiableCharCollection.noneSatisfy(CharPredicate predicate) AbstractSynchronizedCharCollection.reject(CharPredicate predicate) AbstractUnmodifiableCharCollection.reject(CharPredicate predicate) booleanAbstractSynchronizedCharCollection.removeIf(CharPredicate predicate) booleanAbstractUnmodifiableCharCollection.removeIf(CharPredicate predicate) AbstractSynchronizedCharCollection.select(CharPredicate predicate) AbstractUnmodifiableCharCollection.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionbooleanAbstractLazyCharIterable.allSatisfy(CharPredicate predicate) booleanCollectCharIterable.allSatisfy(CharPredicate predicate) booleanLazyCharIterableAdapter.allSatisfy(CharPredicate predicate) booleanSelectCharIterable.allSatisfy(CharPredicate predicate) booleanTapCharIterable.allSatisfy(CharPredicate predicate) booleanAbstractLazyCharIterable.anySatisfy(CharPredicate predicate) booleanCollectCharIterable.anySatisfy(CharPredicate predicate) booleanLazyCharIterableAdapter.anySatisfy(CharPredicate predicate) booleanSelectCharIterable.anySatisfy(CharPredicate predicate) booleanTapCharIterable.anySatisfy(CharPredicate predicate) intAbstractLazyCharIterable.count(CharPredicate predicate) intCollectCharIterable.count(CharPredicate predicate) intLazyCharIterableAdapter.count(CharPredicate predicate) intSelectCharIterable.count(CharPredicate predicate) charAbstractLazyCharIterable.detectIfNone(CharPredicate predicate, char ifNone) charLazyCharIterableAdapter.detectIfNone(CharPredicate predicate, char ifNone) charTapCharIterable.detectIfNone(CharPredicate predicate, char ifNone) booleanAbstractLazyCharIterable.noneSatisfy(CharPredicate predicate) booleanLazyCharIterableAdapter.noneSatisfy(CharPredicate predicate) booleanTapCharIterable.noneSatisfy(CharPredicate predicate) AbstractLazyCharIterable.reject(CharPredicate predicate) AbstractLazyCharIterable.select(CharPredicate predicate) Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type CharPredicate -
Uses of CharPredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionbooleanCharArrayList.allSatisfy(CharPredicate predicate) booleanCharArrayList.anySatisfy(CharPredicate predicate) intCharArrayList.count(CharPredicate predicate) charCharArrayList.detectIfNone(CharPredicate predicate, char ifNone) CharArrayList.reject(CharPredicate predicate) <R extends MutableCharCollection>
RCharArrayList.reject(CharPredicate predicate, R target) SynchronizedCharList.reject(CharPredicate predicate) UnmodifiableCharList.reject(CharPredicate predicate) booleanCharArrayList.removeIf(CharPredicate predicate) CharArrayList.select(CharPredicate predicate) <R extends MutableCharCollection>
RCharArrayList.select(CharPredicate predicate, R target) SynchronizedCharList.select(CharPredicate predicate) UnmodifiableCharList.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionbooleanAbstractMutableCharKeySet.allSatisfy(CharPredicate predicate) booleanAbstractMutableCharValuesMap.AbstractCharValuesCollection.allSatisfy(CharPredicate predicate) booleanAbstractMutableCharValuesMap.allSatisfy(CharPredicate predicate) booleanObjectCharHashMap.allSatisfy(CharPredicate predicate) booleanObjectCharHashMapWithHashingStrategy.allSatisfy(CharPredicate predicate) booleanSynchronizedByteCharMap.allSatisfy(CharPredicate predicate) booleanSynchronizedCharCharMap.allSatisfy(CharPredicate predicate) booleanSynchronizedDoubleCharMap.allSatisfy(CharPredicate predicate) booleanSynchronizedFloatCharMap.allSatisfy(CharPredicate predicate) booleanSynchronizedIntCharMap.allSatisfy(CharPredicate predicate) booleanSynchronizedLongCharMap.allSatisfy(CharPredicate predicate) booleanSynchronizedObjectCharMap.allSatisfy(CharPredicate predicate) booleanSynchronizedShortCharMap.allSatisfy(CharPredicate predicate) booleanUnmodifiableByteCharMap.allSatisfy(CharPredicate predicate) booleanUnmodifiableCharCharMap.allSatisfy(CharPredicate predicate) booleanUnmodifiableDoubleCharMap.allSatisfy(CharPredicate predicate) booleanUnmodifiableFloatCharMap.allSatisfy(CharPredicate predicate) booleanUnmodifiableIntCharMap.allSatisfy(CharPredicate predicate) booleanUnmodifiableLongCharMap.allSatisfy(CharPredicate predicate) booleanUnmodifiableObjectCharMap.allSatisfy(CharPredicate predicate) booleanUnmodifiableShortCharMap.allSatisfy(CharPredicate predicate) booleanAbstractMutableCharKeySet.anySatisfy(CharPredicate predicate) booleanAbstractMutableCharValuesMap.AbstractCharValuesCollection.anySatisfy(CharPredicate predicate) booleanAbstractMutableCharValuesMap.anySatisfy(CharPredicate predicate) booleanObjectCharHashMap.anySatisfy(CharPredicate predicate) booleanObjectCharHashMapWithHashingStrategy.anySatisfy(CharPredicate predicate) booleanSynchronizedByteCharMap.anySatisfy(CharPredicate predicate) booleanSynchronizedCharCharMap.anySatisfy(CharPredicate predicate) booleanSynchronizedDoubleCharMap.anySatisfy(CharPredicate predicate) booleanSynchronizedFloatCharMap.anySatisfy(CharPredicate predicate) booleanSynchronizedIntCharMap.anySatisfy(CharPredicate predicate) booleanSynchronizedLongCharMap.anySatisfy(CharPredicate predicate) booleanSynchronizedObjectCharMap.anySatisfy(CharPredicate predicate) booleanSynchronizedShortCharMap.anySatisfy(CharPredicate predicate) booleanUnmodifiableByteCharMap.anySatisfy(CharPredicate predicate) booleanUnmodifiableCharCharMap.anySatisfy(CharPredicate predicate) booleanUnmodifiableDoubleCharMap.anySatisfy(CharPredicate predicate) booleanUnmodifiableFloatCharMap.anySatisfy(CharPredicate predicate) booleanUnmodifiableIntCharMap.anySatisfy(CharPredicate predicate) booleanUnmodifiableLongCharMap.anySatisfy(CharPredicate predicate) booleanUnmodifiableObjectCharMap.anySatisfy(CharPredicate predicate) booleanUnmodifiableShortCharMap.anySatisfy(CharPredicate predicate) intAbstractMutableCharKeySet.count(CharPredicate predicate) intAbstractMutableCharValuesMap.AbstractCharValuesCollection.count(CharPredicate predicate) intAbstractMutableCharValuesMap.count(CharPredicate predicate) intObjectCharHashMap.count(CharPredicate predicate) intObjectCharHashMapWithHashingStrategy.count(CharPredicate predicate) intSynchronizedByteCharMap.count(CharPredicate predicate) intSynchronizedCharCharMap.count(CharPredicate predicate) intSynchronizedDoubleCharMap.count(CharPredicate predicate) intSynchronizedFloatCharMap.count(CharPredicate predicate) intSynchronizedIntCharMap.count(CharPredicate predicate) intSynchronizedLongCharMap.count(CharPredicate predicate) intSynchronizedObjectCharMap.count(CharPredicate predicate) intSynchronizedShortCharMap.count(CharPredicate predicate) intUnmodifiableByteCharMap.count(CharPredicate predicate) intUnmodifiableCharCharMap.count(CharPredicate predicate) intUnmodifiableDoubleCharMap.count(CharPredicate predicate) intUnmodifiableFloatCharMap.count(CharPredicate predicate) intUnmodifiableIntCharMap.count(CharPredicate predicate) intUnmodifiableLongCharMap.count(CharPredicate predicate) intUnmodifiableObjectCharMap.count(CharPredicate predicate) intUnmodifiableShortCharMap.count(CharPredicate predicate) charAbstractMutableCharKeySet.detectIfNone(CharPredicate predicate, char ifNone) charAbstractMutableCharValuesMap.AbstractCharValuesCollection.detectIfNone(CharPredicate predicate, char ifNone) charAbstractMutableCharValuesMap.detectIfNone(CharPredicate predicate, char value) charObjectCharHashMap.detectIfNone(CharPredicate predicate, char ifNone) charObjectCharHashMapWithHashingStrategy.detectIfNone(CharPredicate predicate, char ifNone) charSynchronizedByteCharMap.detectIfNone(CharPredicate predicate, char ifNone) charSynchronizedCharCharMap.detectIfNone(CharPredicate predicate, char ifNone) charSynchronizedDoubleCharMap.detectIfNone(CharPredicate predicate, char ifNone) charSynchronizedFloatCharMap.detectIfNone(CharPredicate predicate, char ifNone) charSynchronizedIntCharMap.detectIfNone(CharPredicate predicate, char ifNone) charSynchronizedLongCharMap.detectIfNone(CharPredicate predicate, char ifNone) charSynchronizedObjectCharMap.detectIfNone(CharPredicate predicate, char ifNone) charSynchronizedShortCharMap.detectIfNone(CharPredicate predicate, char ifNone) charUnmodifiableByteCharMap.detectIfNone(CharPredicate predicate, char ifNone) charUnmodifiableCharCharMap.detectIfNone(CharPredicate predicate, char ifNone) charUnmodifiableDoubleCharMap.detectIfNone(CharPredicate predicate, char ifNone) charUnmodifiableFloatCharMap.detectIfNone(CharPredicate predicate, char ifNone) charUnmodifiableIntCharMap.detectIfNone(CharPredicate predicate, char ifNone) charUnmodifiableLongCharMap.detectIfNone(CharPredicate predicate, char ifNone) charUnmodifiableObjectCharMap.detectIfNone(CharPredicate predicate, char ifNone) charUnmodifiableShortCharMap.detectIfNone(CharPredicate predicate, char ifNone) booleanAbstractMutableCharValuesMap.AbstractCharValuesCollection.noneSatisfy(CharPredicate predicate) booleanObjectCharHashMap.noneSatisfy(CharPredicate predicate) booleanObjectCharHashMapWithHashingStrategy.noneSatisfy(CharPredicate predicate) booleanSynchronizedByteCharMap.noneSatisfy(CharPredicate predicate) booleanSynchronizedCharCharMap.noneSatisfy(CharPredicate predicate) booleanSynchronizedDoubleCharMap.noneSatisfy(CharPredicate predicate) booleanSynchronizedFloatCharMap.noneSatisfy(CharPredicate predicate) booleanSynchronizedIntCharMap.noneSatisfy(CharPredicate predicate) booleanSynchronizedLongCharMap.noneSatisfy(CharPredicate predicate) booleanSynchronizedObjectCharMap.noneSatisfy(CharPredicate predicate) booleanSynchronizedShortCharMap.noneSatisfy(CharPredicate predicate) booleanUnmodifiableByteCharMap.noneSatisfy(CharPredicate predicate) booleanUnmodifiableCharCharMap.noneSatisfy(CharPredicate predicate) booleanUnmodifiableDoubleCharMap.noneSatisfy(CharPredicate predicate) booleanUnmodifiableFloatCharMap.noneSatisfy(CharPredicate predicate) booleanUnmodifiableIntCharMap.noneSatisfy(CharPredicate predicate) booleanUnmodifiableLongCharMap.noneSatisfy(CharPredicate predicate) booleanUnmodifiableObjectCharMap.noneSatisfy(CharPredicate predicate) booleanUnmodifiableShortCharMap.noneSatisfy(CharPredicate predicate) AbstractMutableCharKeySet.reject(CharPredicate predicate) AbstractMutableCharValuesMap.AbstractCharValuesCollection.reject(CharPredicate predicate) AbstractMutableCharValuesMap.reject(CharPredicate predicate) ObjectCharHashMap.reject(CharPredicate predicate) ObjectCharHashMapWithHashingStrategy.reject(CharPredicate predicate) SynchronizedByteCharMap.reject(CharPredicate predicate) SynchronizedCharCharMap.reject(CharPredicate predicate) SynchronizedDoubleCharMap.reject(CharPredicate predicate) SynchronizedFloatCharMap.reject(CharPredicate predicate) SynchronizedIntCharMap.reject(CharPredicate predicate) SynchronizedLongCharMap.reject(CharPredicate predicate) SynchronizedObjectCharMap.reject(CharPredicate predicate) SynchronizedShortCharMap.reject(CharPredicate predicate) UnmodifiableByteCharMap.reject(CharPredicate predicate) UnmodifiableCharCharMap.reject(CharPredicate predicate) UnmodifiableDoubleCharMap.reject(CharPredicate predicate) UnmodifiableFloatCharMap.reject(CharPredicate predicate) UnmodifiableIntCharMap.reject(CharPredicate predicate) UnmodifiableLongCharMap.reject(CharPredicate predicate) UnmodifiableObjectCharMap.reject(CharPredicate predicate) UnmodifiableShortCharMap.reject(CharPredicate predicate) AbstractMutableCharKeySet.select(CharPredicate predicate) AbstractMutableCharValuesMap.AbstractCharValuesCollection.select(CharPredicate predicate) AbstractMutableCharValuesMap.select(CharPredicate predicate) ObjectCharHashMap.select(CharPredicate predicate) ObjectCharHashMapWithHashingStrategy.select(CharPredicate predicate) SynchronizedByteCharMap.select(CharPredicate predicate) SynchronizedCharCharMap.select(CharPredicate predicate) SynchronizedDoubleCharMap.select(CharPredicate predicate) SynchronizedFloatCharMap.select(CharPredicate predicate) SynchronizedIntCharMap.select(CharPredicate predicate) SynchronizedLongCharMap.select(CharPredicate predicate) SynchronizedObjectCharMap.select(CharPredicate predicate) SynchronizedShortCharMap.select(CharPredicate predicate) UnmodifiableByteCharMap.select(CharPredicate predicate) UnmodifiableCharCharMap.select(CharPredicate predicate) UnmodifiableDoubleCharMap.select(CharPredicate predicate) UnmodifiableFloatCharMap.select(CharPredicate predicate) UnmodifiableIntCharMap.select(CharPredicate predicate) UnmodifiableLongCharMap.select(CharPredicate predicate) UnmodifiableObjectCharMap.select(CharPredicate predicate) UnmodifiableShortCharMap.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionbooleanSynchronizedCharIterable.allSatisfy(CharPredicate predicate) booleanSynchronizedCharIterable.anySatisfy(CharPredicate predicate) intSynchronizedCharIterable.count(CharPredicate predicate) charSynchronizedCharIterable.detectIfNone(CharPredicate predicate, char ifNone) booleanSynchronizedCharIterable.noneSatisfy(CharPredicate predicate) SynchronizedCharIterable.reject(CharPredicate predicate) SynchronizedCharIterable.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionbooleanCharHashSet.allSatisfy(CharPredicate predicate) booleanCharHashSet.anySatisfy(CharPredicate predicate) intCharHashSet.count(CharPredicate predicate) charCharHashSet.detectIfNone(CharPredicate predicate, char ifNone) CharHashSet.reject(CharPredicate predicate) <R extends MutableCharCollection>
RCharHashSet.reject(CharPredicate predicate, R target) SynchronizedCharSet.reject(CharPredicate predicate) UnmodifiableCharSet.reject(CharPredicate predicate) CharHashSet.select(CharPredicate predicate) <R extends MutableCharCollection>
RCharHashSet.select(CharPredicate predicate, R target) SynchronizedCharSet.select(CharPredicate predicate) UnmodifiableCharSet.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionbooleanSynchronizedCharStack.allSatisfy(CharPredicate predicate) booleanUnmodifiableCharStack.allSatisfy(CharPredicate predicate) booleanSynchronizedCharStack.anySatisfy(CharPredicate predicate) booleanUnmodifiableCharStack.anySatisfy(CharPredicate predicate) intSynchronizedCharStack.count(CharPredicate predicate) intUnmodifiableCharStack.count(CharPredicate predicate) charSynchronizedCharStack.detectIfNone(CharPredicate predicate, char ifNone) charUnmodifiableCharStack.detectIfNone(CharPredicate predicate, char ifNone) booleanSynchronizedCharStack.noneSatisfy(CharPredicate predicate) booleanUnmodifiableCharStack.noneSatisfy(CharPredicate predicate) CharArrayStack.reject(CharPredicate predicate) SynchronizedCharStack.reject(CharPredicate predicate) UnmodifiableCharStack.reject(CharPredicate predicate) CharArrayStack.select(CharPredicate predicate) SynchronizedCharStack.select(CharPredicate predicate) UnmodifiableCharStack.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionbooleanAbstractCharStack.allSatisfy(CharPredicate predicate) booleanAbstractCharStack.anySatisfy(CharPredicate predicate) intAbstractCharStack.count(CharPredicate predicate) charAbstractCharStack.detectIfNone(CharPredicate predicate, char ifNone) booleanAbstractCharStack.noneSatisfy(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable with parameters of type CharPredicateModifier and TypeMethodDescriptionbooleanCharAdapter.allSatisfy(CharPredicate predicate) booleanCharAdapter.anySatisfy(CharPredicate predicate) intCharAdapter.count(CharPredicate predicate) charCharAdapter.detectIfNone(CharPredicate predicate, char ifNone) booleanCharAdapter.noneSatisfy(CharPredicate predicate) CharAdapter.reject(CharPredicate predicate) CharAdapter.select(CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type CharPredicateModifier and TypeMethodDescriptionstatic booleanStringIterate.allSatisfy(String string, CharPredicate predicate) Deprecated.since 7.0.static booleanStringIterate.allSatisfyChar(String string, CharPredicate predicate) static booleanStringIterate.anySatisfy(String string, CharPredicate predicate) Deprecated.since 7.0.static booleanStringIterate.anySatisfyChar(String string, CharPredicate predicate) static intStringIterate.count(String string, CharPredicate predicate) Deprecated.since 7.0.static intStringIterate.countChar(String string, CharPredicate predicate) Count the number of elements that return true for the specifiedpredicate.static CharacterStringIterate.detect(String string, CharPredicate predicate) Deprecated.since 7.0.static CharacterStringIterate.detectChar(String string, CharPredicate predicate) Find the first element that returns true for the specifiedpredicate.static CharacterStringIterate.detectCharIfNone(String string, CharPredicate predicate, char resultIfNone) Find the first element that returns true for the specifiedpredicate.static CharacterStringIterate.detectCharIfNone(String string, CharPredicate predicate, String resultIfNone) Find the first element that returns true for the specifiedpredicate.static CharacterStringIterate.detectIfNone(String string, CharPredicate predicate, char resultIfNone) Deprecated.since 7.0.static CharacterStringIterate.detectIfNone(String string, CharPredicate predicate, String resultIfNone) Deprecated.since 7.0.static booleanStringIterate.noneSatisfy(String string, CharPredicate predicate) Deprecated.since 7.0.static booleanStringIterate.noneSatisfyChar(String string, CharPredicate predicate) static StringStringIterate.reject(String string, CharPredicate predicate) Deprecated.since 7.0.static StringStringIterate.rejectChar(String string, CharPredicate predicate) static StringStringIterate.select(String string, CharPredicate predicate) Deprecated.since 7.0.static StringStringIterate.selectChar(String string, CharPredicate predicate) -
Uses of CharPredicate in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionstatic booleanCharIterableIterate.allSatisfy(CharIterable iterable, CharPredicate predicate) static booleanCharIteratorIterate.allSatisfy(CharIterator iterator, CharPredicate predicate) static booleanCharIterableIterate.anySatisfy(CharIterable iterable, CharPredicate predicate) static booleanCharIteratorIterate.anySatisfy(CharIterator iterator, CharPredicate predicate) static intCharIterableIterate.count(CharIterable iterable, CharPredicate predicate) static intCharIteratorIterate.count(CharIterator iterator, CharPredicate predicate) static charCharIterableIterate.detectIfNone(CharIterable iterable, CharPredicate predicate, char ifNone) static charCharIteratorIterate.detectIfNone(CharIterator iterator, CharPredicate predicate, char ifNone) static booleanCharIterableIterate.noneSatisfy(CharIterable iterable, CharPredicate predicate) static booleanCharIteratorIterate.noneSatisfy(CharIterator iterator, CharPredicate predicate) static <R extends MutableCharCollection>
RCharIterableIterate.reject(CharIterable iterable, CharPredicate predicate, R targetCollection) static <R extends MutableCharCollection>
RCharIteratorIterate.reject(CharIterator iterator, CharPredicate predicate, R targetCollection) static <R extends MutableCharCollection>
RCharIterableIterate.select(CharIterable iterable, CharPredicate predicate, R targetCollection) static <R extends MutableCharCollection>
RCharIteratorIterate.select(CharIterator iterator, CharPredicate predicate, R targetCollection) -
Uses of CharPredicate in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type CharPredicateModifier and TypeMethodDescriptionstatic <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 LazyCharIterableLazyCharIterate.select(CharIterable iterable, CharPredicate predicate) Creates a deferred filtering char iterable for the specified char iterable.