Class SelectUnsortedBagBatch<T>
- java.lang.Object
-
- org.eclipse.collections.impl.lazy.parallel.AbstractBatch<T>
-
- org.eclipse.collections.impl.lazy.parallel.bag.SelectUnsortedBagBatch<T>
-
- All Implemented Interfaces:
UnsortedBagBatch<T>
,Batch<T>
public class SelectUnsortedBagBatch<T> extends AbstractBatch<T> implements UnsortedBagBatch<T>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
SelectUnsortedBagBatch.IfProcedureWithOccurrences<T>
-
Field Summary
Fields Modifier and Type Field Description private Predicate<? super T>
predicate
private UnsortedBagBatch<T>
unsortedBagBatch
-
Constructor Summary
Constructors Constructor Description SelectUnsortedBagBatch(UnsortedBagBatch<T> unsortedBagBatch, Predicate<? super T> predicate)
-
Method Summary
All Methods Instance Methods Concrete 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
forEach(Procedure<? super T> procedure)
void
forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)
UnsortedBagBatch<T>
select(Predicate<? super T> 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
clone, equals, finalize, 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
-
-
-
-
Field Detail
-
unsortedBagBatch
private final UnsortedBagBatch<T> unsortedBagBatch
-
-
Constructor Detail
-
SelectUnsortedBagBatch
public SelectUnsortedBagBatch(UnsortedBagBatch<T> unsortedBagBatch, Predicate<? super T> predicate)
-
-
Method Detail
-
forEachWithOccurrences
public void forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)
- Specified by:
forEachWithOccurrences
in interfaceUnsortedBagBatch<T>
-
select
public UnsortedBagBatch<T> select(Predicate<? super T> predicate)
-
collect
public <V> UnsortedBagBatch<V> collect(Function<? super T,? extends V> function)
-
flatCollect
public <V> UnsortedBagBatch<V> flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
- Specified by:
flatCollect
in interfaceBatch<T>
- Specified by:
flatCollect
in interfaceUnsortedBagBatch<T>
-
-