default Predicate<T> |
Predicate.and(Predicate<? super T> and) |
Compose this Predicate logical-AND the specified
Predicate.
|
static <T> java.util.function.Predicate<T> |
Predicate.asJavaPredicate(Predicate<T> wrapped) |
Returns a java.util.function.Predicate which wraps the specified
Predicate and throws any thrown exceptions.
|
static <T> java.util.function.Predicate<T> |
Predicate.asJavaPredicateOrElse(Predicate<T> wrapped,
boolean orElse) |
Returns a java.util.function.Predicate which wraps the specified
Predicate and the specified value.
|
static <T> java.util.function.Predicate<T> |
Predicate.asJavaPredicateOrElseGet(Predicate<T> wrapped,
java.util.function.BooleanSupplier orElseGet) |
Returns a java.util.function.Predicate which wraps the specified
Predicate and the specified
java.util.function.BooleanSupplier.
|
default Predicate<T> |
Predicate.or(Predicate<? super T> or) |
Compose this Predicate logical-OR the specified
Predicate.
|