Class ParallelSelectIterable<T>
- java.lang.Object
-
- org.eclipse.collections.impl.lazy.parallel.AbstractParallelIterable<T,B>
-
- org.eclipse.collections.impl.lazy.parallel.AbstractParallelIterableImpl<T,Batch<T>>
-
- org.eclipse.collections.impl.lazy.parallel.ParallelSelectIterable<T>
-
- All Implemented Interfaces:
ParallelIterable<T>
public class ParallelSelectIterable<T> extends AbstractParallelIterableImpl<T,Batch<T>>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
ParallelSelectIterable.SelectAllSatisfyPredicate<T>
-
Field Summary
Fields Modifier and Type Field Description private AbstractParallelIterable<T,? extends Batch<T>>
parallelIterable
private Predicate<? super T>
predicate
-
Constructor Summary
Constructors Constructor Description ParallelSelectIterable(AbstractParallelIterable<T,? extends Batch<T>> parallelIterable, Predicate<? super T> predicate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
allSatisfy(Predicate<? super T> predicate)
boolean
anySatisfy(Predicate<? super T> predicate)
T
detect(Predicate<? super T> predicate)
void
forEach(Procedure<? super T> procedure)
int
getBatchSize()
java.util.concurrent.ExecutorService
getExecutorService()
LazyIterable<Batch<T>>
split()
java.lang.Object[]
toArray()
<E> E[]
toArray(E[] array)
-
Methods inherited from class org.eclipse.collections.impl.lazy.parallel.AbstractParallelIterableImpl
asUnique, collect, collectIf, collectWith, flatCollect, groupBy, groupByEach, isOrdered, reject, rejectWith, select, selectInstancesOf, selectWith
-
Methods inherited from class org.eclipse.collections.impl.lazy.parallel.AbstractParallelIterable
aggregateBy, aggregateInPlaceBy, allSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, collectCombine, count, countWith, detect, detectIfNone, detectWith, detectWithIfNone, forEach, forEachWith, groupByUniqueKey, max, max, maxBy, min, min, minBy, noneSatisfy, noneSatisfyWith, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.ParallelIterable
appendString, appendString, makeString, makeString, makeString, makeString, toSortedList
-
-
-
-
Method Detail
-
getExecutorService
public java.util.concurrent.ExecutorService getExecutorService()
- Specified by:
getExecutorService
in classAbstractParallelIterable<T,Batch<T>>
-
getBatchSize
public int getBatchSize()
- Specified by:
getBatchSize
in classAbstractParallelIterable<T,Batch<T>>
-
split
public LazyIterable<Batch<T>> split()
- Specified by:
split
in classAbstractParallelIterable<T,Batch<T>>
-
toArray
public java.lang.Object[] toArray()
-
toArray
public <E> E[] toArray(E[] array)
- Specified by:
toArray
in interfaceParallelIterable<T>
- Overrides:
toArray
in classAbstractParallelIterable<T,Batch<T>>
-
-