public interface Batch<T>
| Modifier and Type | Method and Description |
|---|---|
<V> Batch<V> |
collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
int |
count(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<V> Batch<V> |
flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
void |
forEach(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
String |
makeString(String separator) |
T |
max(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
maxBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
T |
min(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
minBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
Batch<T> |
select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
DoubleSumResultHolder |
sumOfDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> function) |
DoubleSumResultHolder |
sumOfFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> function) |
long |
sumOfInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> function) |
long |
sumOfLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> function) |
void forEach(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
<V> Batch<V> collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
<V> Batch<V> flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
int count(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
T min(Comparator<? super T> comparator)
T max(Comparator<? super T> comparator)
<V extends Comparable<? super V>> T minBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
<V extends Comparable<? super V>> T maxBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
long sumOfInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> function)
long sumOfLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> function)
DoubleSumResultHolder sumOfFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> function)
DoubleSumResultHolder sumOfDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> function)
Copyright © 2004–2018. All rights reserved.