Interface UnsortedSetBatch<T>
-
- All Superinterfaces:
Batch<T>
- All Known Subinterfaces:
RootUnsortedSetBatch<T>
- All Known Implementing Classes:
CollectUnsortedSetBatch,DistinctBatch,SelectUnsortedSetBatch
public interface UnsortedSetBatch<T> extends Batch<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <V> UnsortedBagBatch<V>collect(Function<? super T,? extends V> function)<V> UnsortedBagBatch<V>flatCollect(Function<? super T,? extends Iterable<V>> function)UnsortedSetBatch<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
UnsortedSetBatch<T> select(Predicate<? super T> predicate)
-
collect
<V> UnsortedBagBatch<V> collect(Function<? super T,? extends V> function)
-
flatCollect
<V> UnsortedBagBatch<V> flatCollect(Function<? super T,? extends Iterable<V>> function)
- Specified by:
flatCollectin interfaceBatch<T>
-
-