Class ListIterableBatch<T>
- java.lang.Object
-
- org.eclipse.collections.impl.lazy.parallel.AbstractBatch<T>
-
- org.eclipse.collections.impl.lazy.parallel.list.ListIterableBatch<T>
-
- All Implemented Interfaces:
Batch<T>
,ListBatch<T>
,RootListBatch<T>
,OrderedBatch<T>
,RootBatch<T>
public class ListIterableBatch<T> extends AbstractBatch<T> implements RootListBatch<T>
-
-
Field Summary
Fields Modifier and Type Field Description private int
chunkEndIndex
private int
chunkStartIndex
private ListIterable<T>
list
-
Constructor Summary
Constructors Constructor Description ListIterableBatch(ListIterable<T> list, int chunkStartIndex, int chunkEndIndex)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
allSatisfy(Predicate<? super T> predicate)
boolean
anySatisfy(Predicate<? super T> predicate)
<V> ListBatch<V>
collect(Function<? super T,? extends V> function)
int
count(Predicate<? super T> predicate)
T
detect(Predicate<? super T> predicate)
UnsortedSetBatch<T>
distinct(ConcurrentHashMap<T,java.lang.Boolean> distinct)
<V> ListBatch<V>
flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
void
forEach(Procedure<? super T> procedure)
ListBatch<T>
select(Predicate<? super T> predicate)
-
Methods inherited from class org.eclipse.collections.impl.lazy.parallel.AbstractBatch
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
makeString, max, maxBy, min, minBy, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong
-
-
-
-
Field Detail
-
list
private final ListIterable<T> list
-
chunkStartIndex
private final int chunkStartIndex
-
chunkEndIndex
private final int chunkEndIndex
-
-
Constructor Detail
-
ListIterableBatch
public ListIterableBatch(ListIterable<T> list, int chunkStartIndex, int chunkEndIndex)
-
-
Method Detail
-
anySatisfy
public boolean anySatisfy(Predicate<? super T> predicate)
- Specified by:
anySatisfy
in interfaceRootBatch<T>
-
allSatisfy
public boolean allSatisfy(Predicate<? super T> predicate)
- Specified by:
allSatisfy
in interfaceRootBatch<T>
-
flatCollect
public <V> ListBatch<V> flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
- Specified by:
flatCollect
in interfaceBatch<T>
- Specified by:
flatCollect
in interfaceOrderedBatch<T>
-
distinct
public UnsortedSetBatch<T> distinct(ConcurrentHashMap<T,java.lang.Boolean> distinct)
-
-