Interface ListBatch<T>
-
- All Superinterfaces:
Batch<T>,OrderedBatch<T>
- All Known Subinterfaces:
RootListBatch<T>
- All Known Implementing Classes:
CollectListBatch,CollectSortedSetBatch,FlatCollectListBatch,FlatCollectSortedSetBatch,ListIterableBatch,SelectListBatch
public interface ListBatch<T> extends OrderedBatch<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UnsortedSetBatch<T>distinct(ConcurrentHashMap<T,Boolean> distinct)ListBatch<T>select(Predicate<? super T> predicate)-
Methods inherited from interface org.eclipse.collections.impl.lazy.parallel.Batch
count, forEach, makeString, max, maxBy, min, minBy, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong
-
Methods inherited from interface org.eclipse.collections.impl.lazy.parallel.OrderedBatch
collect, flatCollect
-
-
-
-
Method Detail
-
distinct
UnsortedSetBatch<T> distinct(ConcurrentHashMap<T,Boolean> distinct)
- Specified by:
distinctin interfaceOrderedBatch<T>
-
-