Uses of Interface
org.wildfly.clustering.function.BiPredicate
Packages that use BiPredicate
-
Uses of BiPredicate in org.wildfly.clustering.function
Fields in org.wildfly.clustering.function declared as BiPredicateModifier and TypeFieldDescriptionstatic final BiPredicate<?, ?> BiPredicate.ALWAYSA predicate that always returns truestatic final BiPredicate<?, ?> BiPredicate.NEVERA predicate that always returns falseMethods 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.default <V1,V2> BiPredicate <V1, V2> BiPredicate.compose(Function<? super V1, ? extends T> before1, Function<? super V2, ? extends U> before2) Composes a predicate that applies the specified functions to each parameter as inputs to this predicate.default <V1,V2> BiPredicate <V1, V2> Predicate.composeBinary(BiFunction<V1, V2, T> function) Returns a predicate that applies the specified function to its argument before evaluating.default BiPredicate<T, U> BiPredicate.negate()static <T,U> BiPredicate <T, U> BiPredicate.never()Returns a predicate that never accepts its arguments.static <T,U> BiPredicate <T, U> BiPredicate.of(boolean value) Returns a predicate that always returns the specified value.static <T,U> BiPredicate <T, U> BiPredicate.of(BiConsumer<T, U> consumer, BooleanSupplier supplier) Returns a predicate that accepts its parameter via the specified consumer and returns the value returned by the specified supplier.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.static <T,U> BiPredicate <T, U> BiPredicate.testFormer(Predicate<T> predicate) Returns a binary predicate from a predicate that tests the first parameter only.static <T,U> BiPredicate <T, U> BiPredicate.testLatter(Predicate<U> predicate) Returns a binary predicate from a predicate that tests the second parameter only.default BiPredicate<T, U> BiPredicate.xor(BiPredicate<? super T, ? super U> other) Returns a composed predicate that represents a logical XOR of the specified predicate.static <T,U> BiPredicate <T, U> Returns a binary predicate composed using the exclusive disjunction of two unary predicates.