Interface FailablePredicate<T,E extends java.lang.Throwable>
-
- Type Parameters:
T
- Predicate type.E
- Thrown exception.
- 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 likePredicate
that declares aThrowable
.- Since:
- 3.11
-
-
Field Summary
Fields Modifier and Type Field Description static FailablePredicate
FALSE
FALSE singletonstatic FailablePredicate
TRUE
TRUE 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 composedFailablePredicate
likePredicate.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 composedFailablePredicate
likePredicate.and(Predicate)
.boolean
test(T object)
Tests the predicate.static <T,E extends java.lang.Throwable>
FailablePredicate<T,E>truePredicate()
Returns The FALSE TRUE.
-
-
-
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
- Thrown exception.- Returns:
- The NOP singleton.
-
truePredicate
static <T,E extends java.lang.Throwable> FailablePredicate<T,E> truePredicate()
Returns The FALSE TRUE.- Type Parameters:
T
- Predicate type.E
- Thrown exception.- Returns:
- The NOP singleton.
-
and
default FailablePredicate<T,E> and(FailablePredicate<? super T,E> other)
Returns a composedFailablePredicate
likePredicate.and(Predicate)
.- Parameters:
other
- a predicate that will be logically-ANDed with this predicate.- Returns:
- a composed
FailablePredicate
likePredicate.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 composedFailablePredicate
likePredicate.and(Predicate)
.- Parameters:
other
- a predicate that will be logically-ORed with this predicate.- Returns:
- a composed
FailablePredicate
likePredicate.and(Predicate)
. - Throws:
java.lang.NullPointerException
- if other is null
-
-