Interface SortedSetBatch<T>
-
- All Superinterfaces:
Batch<T>,OrderedBatch<T>
- All Known Subinterfaces:
RootSortedSetBatch<T>
- All Known Implementing Classes:
SelectSortedSetBatch
public interface SortedSetBatch<T> extends OrderedBatch<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SortedSetBatch<T>distinct(ConcurrentHashMap<T,Boolean> distinct)SortedSetBatch<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
-
select
SortedSetBatch<T> select(Predicate<? super T> predicate)
-
distinct
SortedSetBatch<T> distinct(ConcurrentHashMap<T,Boolean> distinct)
- Specified by:
distinctin interfaceOrderedBatch<T>
-
-