Uses of Interface
com.tangosol.util.function.Remote.Predicate
Package
Description
Contains various generic utilities.
Contains Functional interfaces allowing remote execution of lambda expressions and method references.
Contains classes to support functional-style operations on remote streams of elements,
such as map-reduce transformations on collections.
-
Uses of Remote.Predicate in com.tangosol.util
Modifier and TypeMethodDescriptionstatic <T> Filter
<T> Filters.predicate
(Remote.Predicate<T> predicate) Return a PredicateFilter for a givenPredicate
.static <T,
E> Filter <T> Filters.predicate
(ValueExtractor<T, ? extends E> extractor, Remote.Predicate<? super E> predicate) Return a PredicateFilter for a givenPredicate
. -
Uses of Remote.Predicate in com.tangosol.util.function
Modifier and TypeMethodDescriptiondefault Remote.Predicate
<T> Remote.Predicate.and
(Remote.Predicate<? super T> other) Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.static <T> Remote.Predicate
<T> Returns a predicate that tests if two arguments are equal according toObjects.equals(Object, Object)
.default Remote.Predicate
<T> Remote.Predicate.negate()
Returns a predicate that represents the logical negation of this predicate.default Remote.Predicate
<T> Remote.Predicate.or
(Remote.Predicate<? super T> other) Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.static <T> Remote.Predicate
<T> Remote.predicate
(Remote.Predicate<T> predicate) Capture serializable Predicate.Modifier and TypeMethodDescriptiondefault Remote.Predicate
<T> Remote.Predicate.and
(Remote.Predicate<? super T> other) Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.default Remote.Predicate
<T> Remote.Predicate.or
(Remote.Predicate<? super T> other) Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.static <T> Remote.Predicate
<T> Remote.predicate
(Remote.Predicate<T> predicate) Capture serializable Predicate. -
Uses of Remote.Predicate in com.tangosol.util.stream
Modifier and TypeMethodDescriptiondefault boolean
RemoteStream.allMatch
(Remote.Predicate<? super T> predicate) Returns whether all elements of this stream match the provided predicate.default boolean
RemoteStream.anyMatch
(Remote.Predicate<? super T> predicate) Returns whether any elements of this stream match the provided predicate.default RemoteStream
<T> RemoteStream.filter
(Remote.Predicate<? super T> predicate) Returns a stream consisting of the elements of this stream that match the given predicate.default boolean
RemoteStream.noneMatch
(Remote.Predicate<? super T> predicate) Returns whether no elements of this stream match the provided predicate.