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
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 java.lang.Iterable<V>> function)
void
forEachWithOccurrences(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 Detail
-
forEachWithOccurrences
void forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)
-
select
UnsortedBagBatch<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 java.lang.Iterable<V>> function)
- Specified by:
flatCollect
in interfaceBatch<T>
-
-