Uses of Interface
com.tangosol.util.function.Remote.BiPredicate
Packages that use Remote.BiPredicate
Package
Description
Various predicates used by the Executor Service.
Contains Functional interfaces allowing remote execution of lambda expressions and method references.
-
Uses of Remote.BiPredicate in com.oracle.coherence.concurrent.executor.function
Classes in com.oracle.coherence.concurrent.executor.function that implement Remote.BiPredicateModifier and TypeClassDescriptionstatic class
ARemote.BiPredicate
that is satisfied only when all provided results satisfy anotherRemote.Predicate
.static class
ARemote.BiPredicate
that is satisfied when one or more of the provided results satisfies anotherRemote.Predicate
.static class
ABiPredicates.NeverBiPredicate
returns false for all values provided to theBiPredicate.test(Object, Object)
method.Methods in com.oracle.coherence.concurrent.executor.function that return Remote.BiPredicateModifier and TypeMethodDescriptionstatic <T> Remote.BiPredicate
<ExecutionPlan, Map<String, T>> BiPredicates.all
(Remote.Predicate<? super T> predicate) Obtains aRemote.Predicate
that ensures all results satisfy a specifiedRemote.Predicate
.static <T> Remote.BiPredicate
<ExecutionPlan, Map<String, T>> BiPredicates.any
(Remote.Predicate<? super T> predicate) Obtains aRemote.Predicate
that ensures any result satisfies a specifiedRemote.Predicate
.static <T,
U> Remote.BiPredicate <T, U> BiPredicates.never()
Obtains aRemote.BiPredicate
that never succeeds. -
Uses of Remote.BiPredicate in com.tangosol.util.function
Methods in com.tangosol.util.function that return Remote.BiPredicateModifier and TypeMethodDescriptiondefault Remote.BiPredicate
<T, U> Remote.BiPredicate.and
(Remote.BiPredicate<? super T, ? super U> other) Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.static <T,
U> Remote.BiPredicate <T, U> Remote.biPredicate
(Remote.BiPredicate<T, U> biPredicate) Capture serializable BiPredicate.default Remote.BiPredicate
<T, U> Remote.BiPredicate.negate()
Returns a predicate that represents the logical negation of this predicate.default Remote.BiPredicate
<T, U> Remote.BiPredicate.or
(Remote.BiPredicate<? super T, ? super U> other) Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.Methods in com.tangosol.util.function with parameters of type Remote.BiPredicateModifier and TypeMethodDescriptiondefault Remote.BiPredicate
<T, U> Remote.BiPredicate.and
(Remote.BiPredicate<? super T, ? super U> other) Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.static <T,
U> Remote.BiPredicate <T, U> Remote.biPredicate
(Remote.BiPredicate<T, U> biPredicate) Capture serializable BiPredicate.default Remote.BiPredicate
<T, U> Remote.BiPredicate.or
(Remote.BiPredicate<? super T, ? super U> other) Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.