ParallelIterable<T>
, ParallelSetIterable<T>
AbstractParallelUnsortedSetIterable
, MultiReaderParallelUnsortedSetIterable
, NonParallelUnsortedSetIterable
, ParallelDistinctIterable
, SynchronizedParallelUnsortedSetIterable
public interface ParallelUnsortedSetIterable<T> extends ParallelSetIterable<T>
Modifier and Type | Method | Description |
---|---|---|
ParallelUnsortedSetIterable<T> |
asUnique() |
|
<V> UnsortedSetMultimap<V,T> |
groupBy(Function<? super T,? extends V> function) |
|
<V> UnsortedSetMultimap<V,T> |
groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function) |
|
ParallelUnsortedSetIterable<T> |
reject(Predicate<? super T> predicate) |
Creates a parallel iterable for rejecting elements from the current iterable.
|
<P> ParallelUnsortedSetIterable<T> |
rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
|
ParallelUnsortedSetIterable<T> |
select(Predicate<? super T> predicate) |
Creates a parallel iterable for selecting elements from the current iterable.
|
<S> ParallelUnsortedSetIterable<S> |
selectInstancesOf(java.lang.Class<S> clazz) |
|
<P> ParallelUnsortedSetIterable<T> |
selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
aggregateBy, aggregateInPlaceBy, allSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, collect, collectIf, collectWith, count, countWith, detect, detectIfNone, detectWith, detectWithIfNone, flatCollect, forEach, forEachWith, groupByUniqueKey, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfy, noneSatisfyWith, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toArray, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy
ParallelUnsortedSetIterable<T> asUnique()
asUnique
in interface ParallelIterable<T>
asUnique
in interface ParallelSetIterable<T>
ParallelUnsortedSetIterable<T> select(Predicate<? super T> predicate)
select
in interface ParallelIterable<T>
select
in interface ParallelSetIterable<T>
<P> ParallelUnsortedSetIterable<T> selectWith(Predicate2<? super T,? super P> predicate, P parameter)
selectWith
in interface ParallelIterable<T>
selectWith
in interface ParallelSetIterable<T>
ParallelUnsortedSetIterable<T> reject(Predicate<? super T> predicate)
reject
in interface ParallelIterable<T>
reject
in interface ParallelSetIterable<T>
<P> ParallelUnsortedSetIterable<T> rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
rejectWith
in interface ParallelIterable<T>
rejectWith
in interface ParallelSetIterable<T>
<S> ParallelUnsortedSetIterable<S> selectInstancesOf(java.lang.Class<S> clazz)
selectInstancesOf
in interface ParallelIterable<T>
selectInstancesOf
in interface ParallelSetIterable<T>
<V> UnsortedSetMultimap<V,T> groupBy(Function<? super T,? extends V> function)
groupBy
in interface ParallelIterable<T>
groupBy
in interface ParallelSetIterable<T>
<V> UnsortedSetMultimap<V,T> groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
groupByEach
in interface ParallelIterable<T>
groupByEach
in interface ParallelSetIterable<T>
Copyright © 2004–2017. All rights reserved.