public abstract class AbstractSynchronizedParallelIterable<T,PI extends org.eclipse.collections.api.ParallelIterable<T>> extends Object implements org.eclipse.collections.api.ParallelIterable<T>
| Modifier and Type | Method and Description |
|---|---|
<K,V> org.eclipse.collections.api.map.MapIterable<K,V> |
aggregateBy(org.eclipse.collections.api.block.function.Function<? super T,? extends K> groupBy,
org.eclipse.collections.api.block.function.Function0<? extends V> zeroValueFactory,
org.eclipse.collections.api.block.function.Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> org.eclipse.collections.api.map.MapIterable<K,V> |
aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function<? super T,? extends K> groupBy,
org.eclipse.collections.api.block.function.Function0<? extends V> zeroValueFactory,
org.eclipse.collections.api.block.procedure.Procedure2<? super V,? super T> mutatingAggregator) |
boolean |
allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
void |
appendString(Appendable appendable) |
void |
appendString(Appendable appendable,
String separator) |
void |
appendString(Appendable appendable,
String start,
String separator,
String end) |
int |
count(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> int |
countWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
T |
detect(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
T |
detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.function.Function0<? extends T> function) |
<P> T |
detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<P> T |
detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter,
org.eclipse.collections.api.block.function.Function0<? extends T> function) |
void |
forEach(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
<P> void |
forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T,? super P> procedure,
P parameter) |
<V> org.eclipse.collections.api.map.MapIterable<V,T> |
groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
String |
makeString() |
String |
makeString(String separator) |
String |
makeString(String start,
String separator,
String end) |
T |
max() |
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() |
T |
min(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
minBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
boolean |
noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
double |
sumOfDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> function) |
double |
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) |
Object[] |
toArray() |
<T1> T1[] |
toArray(T1[] target) |
org.eclipse.collections.api.bag.MutableBag<T> |
toBag() |
org.eclipse.collections.api.list.MutableList<T> |
toList() |
<NK,NV> org.eclipse.collections.api.map.MutableMap<NK,NV> |
toMap(org.eclipse.collections.api.block.function.Function<? super T,? extends NK> keyFunction,
org.eclipse.collections.api.block.function.Function<? super T,? extends NV> valueFunction) |
org.eclipse.collections.api.set.MutableSet<T> |
toSet() |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
toSortedBag() |
org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> |
toSortedBag(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
toSortedBagBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
org.eclipse.collections.api.list.MutableList<T> |
toSortedList() |
org.eclipse.collections.api.list.MutableList<T> |
toSortedList(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
toSortedListBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<NK,NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK,NV> |
toSortedMap(Comparator<? super NK> comparator,
org.eclipse.collections.api.block.function.Function<? super T,? extends NK> keyFunction,
org.eclipse.collections.api.block.function.Function<? super T,? extends NV> valueFunction) |
<NK,NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK,NV> |
toSortedMap(org.eclipse.collections.api.block.function.Function<? super T,? extends NK> keyFunction,
org.eclipse.collections.api.block.function.Function<? super T,? extends NV> valueFunction) |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
toSortedSet() |
org.eclipse.collections.api.set.sorted.MutableSortedSet<T> |
toSortedSet(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
toSortedSetBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
String |
toString() |
public void forEach(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
forEach in interface org.eclipse.collections.api.ParallelIterable<T>public <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T,? super P> procedure, P parameter)
forEachWith in interface org.eclipse.collections.api.ParallelIterable<T>public T detect(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
detect in interface org.eclipse.collections.api.ParallelIterable<T>public <P> T detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
detectWith in interface org.eclipse.collections.api.ParallelIterable<T>public T detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, org.eclipse.collections.api.block.function.Function0<? extends T> function)
detectIfNone in interface org.eclipse.collections.api.ParallelIterable<T>public <P> T detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter, org.eclipse.collections.api.block.function.Function0<? extends T> function)
detectWithIfNone in interface org.eclipse.collections.api.ParallelIterable<T>public int count(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
count in interface org.eclipse.collections.api.ParallelIterable<T>public <P> int countWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
countWith in interface org.eclipse.collections.api.ParallelIterable<T>public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
anySatisfy in interface org.eclipse.collections.api.ParallelIterable<T>public <P> boolean anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
anySatisfyWith in interface org.eclipse.collections.api.ParallelIterable<T>public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
allSatisfy in interface org.eclipse.collections.api.ParallelIterable<T>public <P> boolean allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
allSatisfyWith in interface org.eclipse.collections.api.ParallelIterable<T>public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
noneSatisfy in interface org.eclipse.collections.api.ParallelIterable<T>public <P> boolean noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
noneSatisfyWith in interface org.eclipse.collections.api.ParallelIterable<T>public org.eclipse.collections.api.list.MutableList<T> toList()
toList in interface org.eclipse.collections.api.ParallelIterable<T>public org.eclipse.collections.api.list.MutableList<T> toSortedList()
toSortedList in interface org.eclipse.collections.api.ParallelIterable<T>public org.eclipse.collections.api.list.MutableList<T> toSortedList(Comparator<? super T> comparator)
toSortedList in interface org.eclipse.collections.api.ParallelIterable<T>public <V extends Comparable<? super V>> org.eclipse.collections.api.list.MutableList<T> toSortedListBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
toSortedListBy in interface org.eclipse.collections.api.ParallelIterable<T>public org.eclipse.collections.api.set.MutableSet<T> toSet()
toSet in interface org.eclipse.collections.api.ParallelIterable<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> toSortedSet()
toSortedSet in interface org.eclipse.collections.api.ParallelIterable<T>public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> toSortedSet(Comparator<? super T> comparator)
toSortedSet in interface org.eclipse.collections.api.ParallelIterable<T>public <V extends Comparable<? super V>> org.eclipse.collections.api.set.sorted.MutableSortedSet<T> toSortedSetBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
toSortedSetBy in interface org.eclipse.collections.api.ParallelIterable<T>public org.eclipse.collections.api.bag.MutableBag<T> toBag()
toBag in interface org.eclipse.collections.api.ParallelIterable<T>public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> toSortedBag()
toSortedBag in interface org.eclipse.collections.api.ParallelIterable<T>public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> toSortedBag(Comparator<? super T> comparator)
toSortedBag in interface org.eclipse.collections.api.ParallelIterable<T>public <V extends Comparable<? super V>> org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> toSortedBagBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
toSortedBagBy in interface org.eclipse.collections.api.ParallelIterable<T>public <NK,NV> org.eclipse.collections.api.map.MutableMap<NK,NV> toMap(org.eclipse.collections.api.block.function.Function<? super T,? extends NK> keyFunction, org.eclipse.collections.api.block.function.Function<? super T,? extends NV> valueFunction)
toMap in interface org.eclipse.collections.api.ParallelIterable<T>public <NK,NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK,NV> toSortedMap(org.eclipse.collections.api.block.function.Function<? super T,? extends NK> keyFunction, org.eclipse.collections.api.block.function.Function<? super T,? extends NV> valueFunction)
toSortedMap in interface org.eclipse.collections.api.ParallelIterable<T>public <NK,NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK,NV> toSortedMap(Comparator<? super NK> comparator, org.eclipse.collections.api.block.function.Function<? super T,? extends NK> keyFunction, org.eclipse.collections.api.block.function.Function<? super T,? extends NV> valueFunction)
toSortedMap in interface org.eclipse.collections.api.ParallelIterable<T>public Object[] toArray()
toArray in interface org.eclipse.collections.api.ParallelIterable<T>public <T1> T1[] toArray(T1[] target)
toArray in interface org.eclipse.collections.api.ParallelIterable<T>public T min(Comparator<? super T> comparator)
min in interface org.eclipse.collections.api.ParallelIterable<T>public T max(Comparator<? super T> comparator)
max in interface org.eclipse.collections.api.ParallelIterable<T>public <V extends Comparable<? super V>> T minBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
minBy in interface org.eclipse.collections.api.ParallelIterable<T>public <V extends Comparable<? super V>> T maxBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
maxBy in interface org.eclipse.collections.api.ParallelIterable<T>public long sumOfInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> function)
sumOfInt in interface org.eclipse.collections.api.ParallelIterable<T>public double sumOfFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> function)
sumOfFloat in interface org.eclipse.collections.api.ParallelIterable<T>public long sumOfLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> function)
sumOfLong in interface org.eclipse.collections.api.ParallelIterable<T>public double sumOfDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> function)
sumOfDouble in interface org.eclipse.collections.api.ParallelIterable<T>public String makeString()
makeString in interface org.eclipse.collections.api.ParallelIterable<T>public String makeString(String separator)
makeString in interface org.eclipse.collections.api.ParallelIterable<T>public String makeString(String start, String separator, String end)
makeString in interface org.eclipse.collections.api.ParallelIterable<T>public void appendString(Appendable appendable)
appendString in interface org.eclipse.collections.api.ParallelIterable<T>public void appendString(Appendable appendable, String separator)
appendString in interface org.eclipse.collections.api.ParallelIterable<T>public void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface org.eclipse.collections.api.ParallelIterable<T>public <V> org.eclipse.collections.api.map.MapIterable<V,T> groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
groupByUniqueKey in interface org.eclipse.collections.api.ParallelIterable<T>public <K,V> org.eclipse.collections.api.map.MapIterable<K,V> aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function<? super T,? extends K> groupBy, org.eclipse.collections.api.block.function.Function0<? extends V> zeroValueFactory, org.eclipse.collections.api.block.procedure.Procedure2<? super V,? super T> mutatingAggregator)
aggregateInPlaceBy in interface org.eclipse.collections.api.ParallelIterable<T>public <K,V> org.eclipse.collections.api.map.MapIterable<K,V> aggregateBy(org.eclipse.collections.api.block.function.Function<? super T,? extends K> groupBy, org.eclipse.collections.api.block.function.Function0<? extends V> zeroValueFactory, org.eclipse.collections.api.block.function.Function2<? super V,? super T,? extends V> nonMutatingAggregator)
aggregateBy in interface org.eclipse.collections.api.ParallelIterable<T>Copyright © 2004–2017. All rights reserved.