Uses of Interface
org.eclipse.collections.impl.block.predicate.CodePointPredicate
Packages that use CodePointPredicate
Package
Description
This package contains implementations of
Predicate
and Predicate2
.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
-
Uses of CodePointPredicate in org.eclipse.collections.impl.block.predicate
Fields in org.eclipse.collections.impl.block.predicate declared as CodePointPredicateModifier and TypeFieldDescriptionstatic final CodePointPredicate
CodePointPredicate.IS_BMP
static final CodePointPredicate
CodePointPredicate.IS_DIGIT
static final CodePointPredicate
CodePointPredicate.IS_LETTER
static final CodePointPredicate
CodePointPredicate.IS_LETTER_OR_DIGIT
static final CodePointPredicate
CodePointPredicate.IS_LOWERCASE
static final CodePointPredicate
CodePointPredicate.IS_UNDEFINED
static final CodePointPredicate
CodePointPredicate.IS_UPPERCASE
static final CodePointPredicate
CodePointPredicate.IS_WHITESPACE
-
Uses of CodePointPredicate in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type CodePointPredicateModifier and TypeMethodDescriptionstatic boolean
StringIterate.allSatisfy
(String string, CodePointPredicate predicate) Deprecated.since 7.0.static boolean
StringIterate.allSatisfyCodePoint
(String string, CodePointPredicate predicate) static boolean
StringIterate.anySatisfy
(String string, CodePointPredicate predicate) Deprecated.since 7.0.static boolean
StringIterate.anySatisfyCodePoint
(String string, CodePointPredicate predicate) private static boolean
StringIterate.charactersSatisfy
(String string, CodePointPredicate predicate) static int
StringIterate.count
(String string, CodePointPredicate predicate) Deprecated.since 7.0.static int
StringIterate.countCodePoint
(String string, CodePointPredicate predicate) Count the number of elements that return true for the specifiedpredicate
.static boolean
StringIterate.noneSatisfy
(String string, CodePointPredicate predicate) Deprecated.since 7.0.static boolean
StringIterate.noneSatisfyCodePoint
(String string, CodePointPredicate predicate) static String
StringIterate.reject
(String string, CodePointPredicate predicate) Deprecated.since 7.0.static String
StringIterate.rejectCodePoint
(String string, CodePointPredicate predicate) static String
StringIterate.select
(String string, CodePointPredicate predicate) Deprecated.since 7.0.static String
StringIterate.selectCodePoint
(String string, CodePointPredicate predicate)