Class FlatCollectListBatch<T,V>
- java.lang.Object
-
- org.eclipse.collections.impl.lazy.parallel.AbstractBatch<V>
-
- org.eclipse.collections.impl.lazy.parallel.list.FlatCollectListBatch<T,V>
-
- All Implemented Interfaces:
Batch<V>,ListBatch<V>,OrderedBatch<V>
public class FlatCollectListBatch<T,V> extends AbstractBatch<V> implements ListBatch<V>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <VV> ListBatch<VV>collect(Function<? super V,? extends VV> function)UnsortedSetBatch<V>distinct(ConcurrentHashMap<V,Boolean> distinct)<VV> ListBatch<VV>flatCollect(Function<? super V,? extends Iterable<VV>> function)voidforEach(Procedure<? super V> procedure)ListBatch<V>select(Predicate<? super V> predicate)-
Methods inherited from class org.eclipse.collections.impl.lazy.parallel.AbstractBatch
count, makeString, max, maxBy, min, minBy, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.impl.lazy.parallel.Batch
count, makeString, max, maxBy, min, minBy, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong
-
-
-
-
Method Detail
-
flatCollect
public <VV> ListBatch<VV> flatCollect(Function<? super V,? extends Iterable<VV>> function)
- Specified by:
flatCollectin interfaceBatch<T>- Specified by:
flatCollectin interfaceOrderedBatch<T>
-
distinct
public UnsortedSetBatch<V> distinct(ConcurrentHashMap<V,Boolean> distinct)
-
-