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