Interface CheckedPredicate2<T1,​T2,​E extends java.lang.Throwable>

  • All Superinterfaces:
    java.util.function.BiPredicate<T1,​T2>
    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 CheckedPredicate2<T1,​T2,​E extends java.lang.Throwable>
    extends java.util.function.BiPredicate<T1,​T2>
    • Method Detail

      • checkedTest

        boolean checkedTest​(T1 t1,
                            T2 t2)
                     throws E extends java.lang.Throwable
        Throws:
        E extends java.lang.Throwable
      • test

        default boolean test​(T1 t1,
                             T2 t2)
        Specified by:
        test in interface java.util.function.BiPredicate<T1,​T2>
      • negate

        default CheckedPredicate2<T1,​T2,​E> negate()
        Specified by:
        negate in interface java.util.function.BiPredicate<T1,​T2>
      • not

        static <T1,​T2> java.util.function.BiPredicate<T1,​T2> not​(java.util.function.BiPredicate<T1,​T2> predicate)