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