Uses of Interface
com.github.tadukoo.util.functional.predicate.ThrowingPredicate5
Package
Description
Contains Functional interfaces for Predicates that are not present in default Java.
-
Uses of ThrowingPredicate5 in com.github.tadukoo.util.functional.predicate
Modifier and TypeMethodDescriptionThrowingPredicate5.and
(ThrowingPredicate5<? super A, ? super B, ? super C, ? super D, ? super E, ? extends T> other) Creates a ThrowingPredicate5 that will test the arguments with this ThrowingPredicate5 and with the given ThrowingPredicate5, returning true only if both results are true.ThrowingPredicate5.negate()
Creates a ThrowingPredicate5 that will return the opposite result of this ThrowingPredicate5.ThrowingPredicate5.or
(ThrowingPredicate5<? super A, ? super B, ? super C, ? super D, ? super E, ? extends T> other) Creates a ThrowingPredicate5 that will test the arguments with this ThrowingPredicate5 and with the given ThrowingPredicate5, returning true if either result is true.Modifier and TypeMethodDescriptionThrowingPredicate5.and
(ThrowingPredicate5<? super A, ? super B, ? super C, ? super D, ? super E, ? extends T> other) Creates a ThrowingPredicate5 that will test the arguments with this ThrowingPredicate5 and with the given ThrowingPredicate5, returning true only if both results are true.ThrowingPredicate5.or
(ThrowingPredicate5<? super A, ? super B, ? super C, ? super D, ? super E, ? extends T> other) Creates a ThrowingPredicate5 that will test the arguments with this ThrowingPredicate5 and with the given ThrowingPredicate5, returning true if either result is true.