Interface RootBatch<T>
-
- All Superinterfaces:
Batch<T>
- All Known Subinterfaces:
RootListBatch<T>,RootSortedSetBatch<T>,RootUnsortedBagBatch<T>,RootUnsortedSetBatch<T>
- All Known Implementing Classes:
ListIterableBatch
public interface RootBatch<T> extends Batch<T>
ABatchthat must be at the root of the chain, not wrapped in other Batches.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanallSatisfy(Predicate<? super T> predicate)booleananySatisfy(Predicate<? super T> predicate)Tdetect(Predicate<? super T> predicate)-
Methods inherited from interface org.eclipse.collections.impl.lazy.parallel.Batch
collect, count, flatCollect, forEach, makeString, max, maxBy, min, minBy, select, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong
-
-