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

      • accept

        boolean accept​(char character)
        Deprecated.