Interface CharPredicate
-
- All Superinterfaces:
Serializable
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface @Deprecated public interface CharPredicate extends Serializable
Deprecated.since 3.0. UseCharPredicateinstead.A Predicate that accepts a char value
-
-
Field Summary
Fields Modifier and Type Field Description static CharPredicateIS_DIGITDeprecated.static CharPredicateIS_DIGIT_OR_DOTDeprecated.static CharPredicateIS_LETTERDeprecated.static CharPredicateIS_LETTER_OR_DIGITDeprecated.static CharPredicateIS_LOWERCASEDeprecated.static CharPredicateIS_UNDEFINEDDeprecated.static CharPredicateIS_UPPERCASEDeprecated.static CharPredicateIS_WHITESPACEDeprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleanaccept(char character)Deprecated.
-
-
-
Field Detail
-
IS_UPPERCASE
static final CharPredicate IS_UPPERCASE
Deprecated.
-
IS_LOWERCASE
static final CharPredicate IS_LOWERCASE
Deprecated.
-
IS_DIGIT
static final CharPredicate IS_DIGIT
Deprecated.
-
IS_DIGIT_OR_DOT
static final CharPredicate IS_DIGIT_OR_DOT
Deprecated.
-
IS_LETTER
static final CharPredicate IS_LETTER
Deprecated.
-
IS_LETTER_OR_DIGIT
static final CharPredicate IS_LETTER_OR_DIGIT
Deprecated.
-
IS_WHITESPACE
static final CharPredicate IS_WHITESPACE
Deprecated.
-
IS_UNDEFINED
static final CharPredicate IS_UNDEFINED
Deprecated.
-
-