Class FilteringIterable<T>
- java.lang.Object
-
- com.oracle.coherence.concurrent.executor.util.FilteringIterable<T>
-
-
Constructor Summary
Constructors Constructor Description FilteringIterable(Iterable<T> iterable, com.tangosol.util.function.Remote.Predicate<? super T> predicate)Constructs aFilteringIterable.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<T>iterator()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
FilteringIterable
public FilteringIterable(Iterable<T> iterable, com.tangosol.util.function.Remote.Predicate<? super T> predicate)
Constructs aFilteringIterable.- Parameters:
iterable- theIterableproducing elements to filterpredicate- theRemote.Predicatethat must be satisfied
-
-