Uses of Interface
org.eclipse.collections.impl.lazy.parallel.Batch
-
Packages that use Batch Package Description org.eclipse.collections.impl.lazy.parallel org.eclipse.collections.impl.lazy.parallel.bag org.eclipse.collections.impl.lazy.parallel.list org.eclipse.collections.impl.lazy.parallel.set org.eclipse.collections.impl.lazy.parallel.set.sorted org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet
.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.set.strategy.mutable This package contains implementations of sets with user definedHashingStrategy
s. -
-
Uses of Batch in org.eclipse.collections.impl.lazy.parallel
Classes in org.eclipse.collections.impl.lazy.parallel with type parameters of type Batch Modifier and Type Class Description class
AbstractParallelIterable<T,B extends Batch<T>>
class
AbstractParallelIterableImpl<T,B extends Batch<T>>
Subinterfaces of Batch in org.eclipse.collections.impl.lazy.parallel Modifier and Type Interface Description interface
OrderedBatch<T>
interface
RootBatch<T>
ABatch
that must be at the root of the chain, not wrapped in other Batches.Classes in org.eclipse.collections.impl.lazy.parallel that implement Batch Modifier and Type Class Description class
AbstractBatch<T>
Fields in org.eclipse.collections.impl.lazy.parallel with type parameters of type Batch Modifier and Type Field Description private AbstractParallelIterable<T,? extends Batch<T>>
ParallelDistinctIterable. delegate
private AbstractParallelIterable<T,? extends Batch<T>>
ParallelSelectIterable. parallelIterable
Methods in org.eclipse.collections.impl.lazy.parallel that return Batch Modifier and Type Method Description <V> Batch<V>
Batch. collect(Function<? super T,? extends V> function)
Batch<T>
OrderedBatch. distinct(ConcurrentHashMap<T,java.lang.Boolean> distinct)
<V> Batch<V>
Batch. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
Batch<T>
Batch. select(Predicate<? super T> predicate)
Methods in org.eclipse.collections.impl.lazy.parallel that return types with arguments of type Batch Modifier and Type Method Description LazyIterable<Batch<T>>
ParallelSelectIterable. split()
Method parameters in org.eclipse.collections.impl.lazy.parallel with type arguments of type Batch Modifier and Type Method Description protected <S,V>
voidAbstractParallelIterable. collectCombine(Function<Batch<T>,V> function, Procedure2<S,V> combineProcedure, S state)
private <S,V>
voidAbstractParallelIterable. collectCombineOrdered(Function<Batch<T>,V> function, Procedure2<S,V> combineProcedure, S state)
private <S,V>
voidAbstractParallelIterable. collectCombineUnordered(Function<Batch<T>,V> function, Procedure2<S,V> combineProcedure, S state)
private T
AbstractParallelIterable. collectReduce(Function<Batch<T>,T> map, Function2<T,T,T> function2)
private T
AbstractParallelIterable. collectReduceOrdered(Function<Batch<T>,T> map, Function2<T,T,T> function2)
private T
AbstractParallelIterable. collectReduceUnordered(Function<Batch<T>,T> map, Function2<T,T,T> function2)
private double
AbstractParallelIterable. sumOfDoubleOrdered(Function<Batch<T>,DoubleSumResultHolder> map)
private long
AbstractParallelIterable. sumOfLongOrdered(LongFunction<Batch<T>> map)
Constructor parameters in org.eclipse.collections.impl.lazy.parallel with type arguments of type Batch Constructor Description ParallelDistinctIterable(AbstractParallelIterable<T,? extends Batch<T>> delegate)
ParallelSelectIterable(AbstractParallelIterable<T,? extends Batch<T>> parallelIterable, Predicate<? super T> predicate)
-
Uses of Batch in org.eclipse.collections.impl.lazy.parallel.bag
Subinterfaces of Batch in org.eclipse.collections.impl.lazy.parallel.bag Modifier and Type Interface Description interface
RootUnsortedBagBatch<T>
interface
UnsortedBagBatch<T>
Classes in org.eclipse.collections.impl.lazy.parallel.bag that implement Batch Modifier and Type Class Description class
CollectUnsortedBagBatch<T,V>
class
FlatCollectUnsortedBagBatch<T,V>
class
SelectUnsortedBagBatch<T>
Fields in org.eclipse.collections.impl.lazy.parallel.bag declared as Batch Modifier and Type Field Description private Batch<T>
CollectUnsortedBagBatch. unsortedBagBatch
private Batch<T>
FlatCollectUnsortedBagBatch. unsortedBagBatch
Constructors in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type Batch Constructor Description CollectUnsortedBagBatch(Batch<T> unsortedBagBatch, Function<? super T,? extends V> function)
FlatCollectUnsortedBagBatch(Batch<T> unsortedBagBatch, Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of Batch in org.eclipse.collections.impl.lazy.parallel.list
Subinterfaces of Batch in org.eclipse.collections.impl.lazy.parallel.list Modifier and Type Interface Description interface
ListBatch<T>
interface
RootListBatch<T>
Classes in org.eclipse.collections.impl.lazy.parallel.list that implement Batch Modifier and Type Class Description class
CollectListBatch<T,V>
class
DistinctBatch<T>
class
FlatCollectListBatch<T,V>
class
ListIterableBatch<T>
class
SelectListBatch<T>
Fields in org.eclipse.collections.impl.lazy.parallel.list declared as Batch Modifier and Type Field Description private Batch<T>
CollectListBatch. batch
private Batch<T>
DistinctBatch. batch
private Batch<T>
FlatCollectListBatch. batch
Constructors in org.eclipse.collections.impl.lazy.parallel.list with parameters of type Batch Constructor Description CollectListBatch(Batch<T> batch, Function<? super T,? extends V> function)
DistinctBatch(Batch<T> batch, ConcurrentHashMap<T,java.lang.Boolean> distinct)
FlatCollectListBatch(Batch<T> batch, Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of Batch in org.eclipse.collections.impl.lazy.parallel.set
Subinterfaces of Batch in org.eclipse.collections.impl.lazy.parallel.set Modifier and Type Interface Description interface
RootUnsortedSetBatch<T>
interface
UnsortedSetBatch<T>
Classes in org.eclipse.collections.impl.lazy.parallel.set that implement Batch Modifier and Type Class Description class
CollectUnsortedSetBatch<T,V>
class
SelectUnsortedSetBatch<T>
Fields in org.eclipse.collections.impl.lazy.parallel.set with type parameters of type Batch Modifier and Type Field Description private AbstractParallelIterable<T,? extends Batch<T>>
ParallelCollectIterable. delegate
private AbstractParallelIterable<T,? extends Batch<T>>
ParallelFlatCollectIterable. delegate
Methods in org.eclipse.collections.impl.lazy.parallel.set that return types with arguments of type Batch Modifier and Type Method Description LazyIterable<Batch<V>>
ParallelCollectIterable. split()
LazyIterable<Batch<V>>
ParallelFlatCollectIterable. split()
Constructor parameters in org.eclipse.collections.impl.lazy.parallel.set with type arguments of type Batch Constructor Description ParallelCollectIterable(AbstractParallelIterable<T,? extends Batch<T>> delegate, Function<? super T,? extends V> function)
ParallelFlatCollectIterable(AbstractParallelIterable<T,? extends Batch<T>> delegate, Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of Batch in org.eclipse.collections.impl.lazy.parallel.set.sorted
Subinterfaces of Batch in org.eclipse.collections.impl.lazy.parallel.set.sorted Modifier and Type Interface Description interface
RootSortedSetBatch<T>
interface
SortedSetBatch<T>
Classes in org.eclipse.collections.impl.lazy.parallel.set.sorted that implement Batch Modifier and Type Class Description class
CollectSortedSetBatch<T,V>
class
FlatCollectSortedSetBatch<T,V>
class
SelectSortedSetBatch<T>
-
Uses of Batch in org.eclipse.collections.impl.set.mutable
Classes in org.eclipse.collections.impl.set.mutable that implement Batch Modifier and Type Class Description private class
UnifiedSet.UnifiedUnsortedSetBatch
-
Uses of Batch in org.eclipse.collections.impl.set.sorted.immutable
Classes in org.eclipse.collections.impl.set.sorted.immutable that implement Batch Modifier and Type Class Description private class
ImmutableTreeSet.ImmutableTreeSetBatch
-
Uses of Batch in org.eclipse.collections.impl.set.strategy.mutable
Classes in org.eclipse.collections.impl.set.strategy.mutable that implement Batch Modifier and Type Class Description private class
UnifiedSetWithHashingStrategy.UnifiedUnsortedSetBatch
-