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. Use CharPredicate instead.
A Predicate that accepts a char value
  • Field Details

    • 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.
  • Method Details

    • accept

      boolean accept(char character)
      Deprecated.