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,java.lang.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,java.lang.Boolean> distinct)
- Specified by:
distinct
in interfaceOrderedBatch<T>
-
-