Interface UnsortedBagBatch<T>
- All Superinterfaces:
Batch<T>
- All Known Subinterfaces:
RootUnsortedBagBatch<T>
- All Known Implementing Classes:
CollectUnsortedBagBatch,FlatCollectUnsortedBagBatch,SelectUnsortedBagBatch
public interface UnsortedBagBatch<T> extends Batch<T>
-
Method Summary
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)voidforEachWithOccurrences(ObjectIntProcedure<? super T> procedure)UnsortedBagBatch<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 Details
-
forEachWithOccurrences
-
select
-
collect
-
flatCollect
- Specified by:
flatCollectin interfaceBatch<T>
-