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