Interface CharPredicate
-
- All Superinterfaces:
java.io.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 java.io.Serializable
Deprecated.since 3.0. UseCharPredicate
instead.A Predicate that accepts a char value
-
-
Field Summary
Fields Modifier and Type Field Description static CharPredicate
IS_DIGIT
Deprecated.static CharPredicate
IS_DIGIT_OR_DOT
Deprecated.static CharPredicate
IS_LETTER
Deprecated.static CharPredicate
IS_LETTER_OR_DIGIT
Deprecated.static CharPredicate
IS_LOWERCASE
Deprecated.static CharPredicate
IS_UNDEFINED
Deprecated.static CharPredicate
IS_UPPERCASE
Deprecated.static CharPredicate
IS_WHITESPACE
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
accept(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.
-
-