Interface OrderedBatch<T>
-
- All Superinterfaces:
Batch<T>
- All Known Subinterfaces:
ListBatch<T>,RootListBatch<T>,RootSortedSetBatch<T>,SortedSetBatch<T>
- All Known Implementing Classes:
CollectListBatch,CollectSortedSetBatch,FlatCollectListBatch,FlatCollectSortedSetBatch,ListIterableBatch,SelectListBatch,SelectSortedSetBatch
public interface OrderedBatch<T> extends Batch<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <V> ListBatch<V>collect(Function<? super T,? extends V> function)Batch<T>distinct(ConcurrentHashMap<T,Boolean> distinct)<V> ListBatch<V>flatCollect(Function<? super T,? extends Iterable<V>> function)OrderedBatch<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
-
-
-
-
Method Detail
-
select
OrderedBatch<T> select(Predicate<? super T> predicate)
-
flatCollect
<V> ListBatch<V> flatCollect(Function<? super T,? extends Iterable<V>> function)
- Specified by:
flatCollectin interfaceBatch<T>
-
distinct
Batch<T> distinct(ConcurrentHashMap<T,Boolean> distinct)
-
-