Uses of Interface
com.tangosol.util.function.Remote.BiPredicate
-
Packages that use Remote.BiPredicate Package Description com.oracle.coherence.concurrent.executor.function Various predicates used by the Executor Service.com.tangosol.util.function 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.BiPredicate Modifier and Type Class Description static classBiPredicates.AllResultsBiPredicate<T>ARemote.BiPredicatethat is satisfied only when all provided results satisfy anotherRemote.Predicate.static classBiPredicates.AnyResultBiPredicate<T>ARemote.BiPredicatethat is satisfied when one or more of the provided results satisfies anotherRemote.Predicate.static classBiPredicates.NeverBiPredicateABiPredicates.NeverBiPredicatereturns false for all values provided to theBiPredicate.test(Object, Object)method.Methods in com.oracle.coherence.concurrent.executor.function that return Remote.BiPredicate Modifier and Type Method Description static <T> Remote.BiPredicate<ExecutionPlan,Map<String,T>>BiPredicates. all(Remote.Predicate<? super T> predicate)Obtains aRemote.Predicatethat ensures all results satisfy a specifiedRemote.Predicate.static <T> Remote.BiPredicate<ExecutionPlan,Map<String,T>>BiPredicates. any(Remote.Predicate<? super T> predicate)Obtains aRemote.Predicatethat ensures any result satisfies a specifiedRemote.Predicate.static <T,U>
Remote.BiPredicate<T,U>BiPredicates. never()Obtains aRemote.BiPredicatethat never succeeds. -
Uses of Remote.BiPredicate in com.tangosol.util.function
Methods in com.tangosol.util.function that return Remote.BiPredicate Modifier and Type Method Description default 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.BiPredicate Modifier and Type Method Description default 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.
-