Uses of Interface
org.wildfly.clustering.function.BiPredicate
-
Uses of BiPredicate in org.wildfly.clustering.function
Classes in org.wildfly.clustering.function that implement BiPredicateFields in org.wildfly.clustering.function declared as BiPredicateModifier and TypeFieldDescriptionstatic final BiPredicate<?, ?> BiPredicate.ALWAYSstatic final BiPredicate<?, ?> BiPredicate.NEVERMethods in org.wildfly.clustering.function that return BiPredicateModifier and TypeMethodDescriptionstatic <T,U> BiPredicate <T, U> BiPredicate.always()Returns a predicate that always accepts its arguments.default BiPredicate<T, U> BiPredicate.and(BiPredicate<? super T, ? super U> other) static <T,U> BiPredicate <T, U> Returns a binary predicate composed using the conjunction of two unary predicates.static <T,U> BiPredicate <T, U> Returns a binary predicate from a predicate that tests the first parameter only.static <T,U> BiPredicate <T, U> Returns a binary predicate from a predicate that tests the second parameter only.default BiPredicate<T, U> BiPredicate.negate()static <T,U> BiPredicate <T, U> BiPredicate.never()Returns a predicate that never accepts its arguments.default BiPredicate<T, U> BiPredicate.or(BiPredicate<? super T, ? super U> other) static <T,U> BiPredicate <T, U> Returns a binary predicate composed using the disjunction of two unary predicates.default BiPredicate<U, T> BiPredicate.reverse()Returns a predicate that processes this predicate with reversed parameter order.