Interface CharPredicate
- All Superinterfaces:
Serializable
@Deprecated public interface CharPredicate extends Serializable
Deprecated.
since 3.0. Use
CharPredicate
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
Modifier and Type Method Description boolean
accept(char character)
Deprecated.
-
Field Details
-
IS_UPPERCASE
Deprecated. -
IS_LOWERCASE
Deprecated. -
IS_DIGIT
Deprecated. -
IS_DIGIT_OR_DOT
Deprecated. -
IS_LETTER
Deprecated. -
IS_LETTER_OR_DIGIT
Deprecated. -
IS_WHITESPACE
Deprecated. -
IS_UNDEFINED
Deprecated.
-
-
Method Details
-
accept
boolean accept(char character)Deprecated.
-