Interface CheckedPredicate1<T,​E extends java.lang.Throwable>

  • All Superinterfaces:
    java.util.function.Predicate<T>
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface CheckedPredicate1<T,​E extends java.lang.Throwable>
    extends java.util.function.Predicate<T>
    • Method Detail

      • checkedTest

        boolean checkedTest​(T t)
                     throws E extends java.lang.Throwable
        Throws:
        E extends java.lang.Throwable
      • test

        default boolean test​(T t)
        Specified by:
        test in interface java.util.function.Predicate<T>
      • negate

        default CheckedPredicate1<T,​E> negate()
        Specified by:
        negate in interface java.util.function.Predicate<T>
      • not

        static <T> java.util.function.Predicate<T> not​(java.util.function.Predicate<T> predicate)