Class SelectSortedSetBatch<T>
- java.lang.Object
-
- org.eclipse.collections.impl.lazy.parallel.AbstractBatch<T>
-
- org.eclipse.collections.impl.lazy.parallel.set.sorted.SelectSortedSetBatch<T>
-
- All Implemented Interfaces:
Batch<T>,OrderedBatch<T>,SortedSetBatch<T>
public class SelectSortedSetBatch<T> extends AbstractBatch<T> implements SortedSetBatch<T>
-
-
Constructor Summary
Constructors Constructor Description SelectSortedSetBatch(SortedSetBatch<T> sortedSetBatch, Predicate<? super T> predicate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <V> ListBatch<V>collect(Function<? super T,? extends V> function)SortedSetBatch<T>distinct(ConcurrentHashMap<T,Boolean> distinct)<V> ListBatch<V>flatCollect(Function<? super T,? extends Iterable<V>> function)voidforEach(Procedure<? super T> procedure)SortedSetBatch<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
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
-
-
-
-
Constructor Detail
-
SelectSortedSetBatch
public SelectSortedSetBatch(SortedSetBatch<T> sortedSetBatch, Predicate<? super T> predicate)
-
-
Method Detail
-
select
public SortedSetBatch<T> select(Predicate<? super T> predicate)
- Specified by:
selectin interfaceBatch<T>- Specified by:
selectin interfaceOrderedBatch<T>- Specified by:
selectin interfaceSortedSetBatch<T>
-
flatCollect
public <V> ListBatch<V> flatCollect(Function<? super T,? extends Iterable<V>> function)
- Specified by:
flatCollectin interfaceBatch<T>- Specified by:
flatCollectin interfaceOrderedBatch<T>
-
distinct
public SortedSetBatch<T> distinct(ConcurrentHashMap<T,Boolean> distinct)
- Specified by:
distinctin interfaceOrderedBatch<T>- Specified by:
distinctin interfaceSortedSetBatch<T>
-
-