Interface FailableBiPredicate<T,U,E extends java.lang.Throwable>
- 
- Type Parameters:
 T- Predicate type 1.U- Predicate type 2.E- The kind of thrown exception or error.
- 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 FailableBiPredicate<T,U,E extends java.lang.Throwable>A functional interface likeBiPredicatethat declares aThrowable.- Since:
 - 3.11
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static FailableBiPredicateFALSEFALSE singletonstatic FailableBiPredicateTRUETRUE singleton 
- 
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default FailableBiPredicate<T,U,E>and(FailableBiPredicate<? super T,? super U,E> other)Returns a composedFailableBiPredicatelikeBiPredicate.and(BiPredicate).static <T,U,E extends java.lang.Throwable>
FailableBiPredicate<T,U,E>falsePredicate()Returns The FALSE singleton.default FailableBiPredicate<T,U,E>negate()Returns a predicate that negates this predicate.default FailableBiPredicate<T,U,E>or(FailableBiPredicate<? super T,? super U,E> other)Returns a composedFailableBiPredicatelikeBiPredicate.and(BiPredicate).booleantest(T object1, U object2)Tests the predicate.static <T,U,E extends java.lang.Throwable>
FailableBiPredicate<T,U,E>truePredicate()Returns The TRUE singleton. 
 - 
 
- 
- 
Field Detail
- 
FALSE
static final FailableBiPredicate FALSE
FALSE singleton 
- 
TRUE
static final FailableBiPredicate TRUE
TRUE singleton 
 - 
 
- 
Method Detail
- 
falsePredicate
static <T,U,E extends java.lang.Throwable> FailableBiPredicate<T,U,E> falsePredicate()
Returns The FALSE singleton.- Type Parameters:
 T- Consumed type 1.U- Consumed type 2.E- The kind of thrown exception or error.- Returns:
 - The NOP singleton.
 
 
- 
truePredicate
static <T,U,E extends java.lang.Throwable> FailableBiPredicate<T,U,E> truePredicate()
Returns The TRUE singleton.- Type Parameters:
 T- Consumed type 1.U- Consumed type 2.E- The kind of thrown exception or error.- Returns:
 - The NOP singleton.
 
 
- 
and
default FailableBiPredicate<T,U,E> and(FailableBiPredicate<? super T,? super U,E> other)
Returns a composedFailableBiPredicatelikeBiPredicate.and(BiPredicate).- Parameters:
 other- a predicate that will be logically-ANDed with this predicate.- Returns:
 - a composed 
FailableBiPredicatelikeBiPredicate.and(BiPredicate). - Throws:
 java.lang.NullPointerException- if other is null
 
- 
negate
default FailableBiPredicate<T,U,E> negate()
Returns a predicate that negates this predicate.- Returns:
 - a predicate that negates this predicate.
 
 
- 
or
default FailableBiPredicate<T,U,E> or(FailableBiPredicate<? super T,? super U,E> other)
Returns a composedFailableBiPredicatelikeBiPredicate.and(BiPredicate).- Parameters:
 other- a predicate that will be logically-ORed with this predicate.- Returns:
 - a composed 
FailableBiPredicatelikeBiPredicate.and(BiPredicate). - Throws:
 java.lang.NullPointerException- if other is null
 
 - 
 
 -