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 definedHashingStrategys. -
-
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 classAbstractParallelIterable<T,B extends Batch<T>>classAbstractParallelIterableImpl<T,B extends Batch<T>>Subinterfaces of Batch in org.eclipse.collections.impl.lazy.parallel Modifier and Type Interface Description interfaceOrderedBatch<T>interfaceRootBatch<T>ABatchthat 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 classAbstractBatch<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. delegateprivate AbstractParallelIterable<T,? extends Batch<T>>ParallelSelectIterable. parallelIterableMethods 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 TAbstractParallelIterable. collectReduce(Function<Batch<T>,T> map, Function2<T,T,T> function2)private TAbstractParallelIterable. collectReduceOrdered(Function<Batch<T>,T> map, Function2<T,T,T> function2)private TAbstractParallelIterable. collectReduceUnordered(Function<Batch<T>,T> map, Function2<T,T,T> function2)private doubleAbstractParallelIterable. sumOfDoubleOrdered(Function<Batch<T>,DoubleSumResultHolder> map)private longAbstractParallelIterable. 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 interfaceRootUnsortedBagBatch<T>interfaceUnsortedBagBatch<T>Classes in org.eclipse.collections.impl.lazy.parallel.bag that implement Batch Modifier and Type Class Description classCollectUnsortedBagBatch<T,V>classFlatCollectUnsortedBagBatch<T,V>classSelectUnsortedBagBatch<T>Fields in org.eclipse.collections.impl.lazy.parallel.bag declared as Batch Modifier and Type Field Description private Batch<T>CollectUnsortedBagBatch. unsortedBagBatchprivate Batch<T>FlatCollectUnsortedBagBatch. unsortedBagBatchConstructors 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 interfaceListBatch<T>interfaceRootListBatch<T>Classes in org.eclipse.collections.impl.lazy.parallel.list that implement Batch Modifier and Type Class Description classCollectListBatch<T,V>classDistinctBatch<T>classFlatCollectListBatch<T,V>classListIterableBatch<T>classSelectListBatch<T>Fields in org.eclipse.collections.impl.lazy.parallel.list declared as Batch Modifier and Type Field Description private Batch<T>CollectListBatch. batchprivate Batch<T>DistinctBatch. batchprivate Batch<T>FlatCollectListBatch. batchConstructors 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 interfaceRootUnsortedSetBatch<T>interfaceUnsortedSetBatch<T>Classes in org.eclipse.collections.impl.lazy.parallel.set that implement Batch Modifier and Type Class Description classCollectUnsortedSetBatch<T,V>classSelectUnsortedSetBatch<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. delegateprivate AbstractParallelIterable<T,? extends Batch<T>>ParallelFlatCollectIterable. delegateMethods 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 interfaceRootSortedSetBatch<T>interfaceSortedSetBatch<T>Classes in org.eclipse.collections.impl.lazy.parallel.set.sorted that implement Batch Modifier and Type Class Description classCollectSortedSetBatch<T,V>classFlatCollectSortedSetBatch<T,V>classSelectSortedSetBatch<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 classUnifiedSet.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 classImmutableTreeSet.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 classUnifiedSetWithHashingStrategy.UnifiedUnsortedSetBatch
-