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