Class StandardDoubleIntermediateOperationFactory
- java.lang.Object
-
- com.speedment.jpastreamer.pipeline.standard.intermediate.StandardDoubleIntermediateOperationFactory
-
- All Implemented Interfaces:
DoubleIntermediateOperationFactory
public final class StandardDoubleIntermediateOperationFactory extends Object implements DoubleIntermediateOperationFactory
-
-
Constructor Summary
Constructors Constructor Description StandardDoubleIntermediateOperationFactory()
-
Method Summary
-
-
-
Method Detail
-
createFilter
public IntermediateOperation<DoubleStream,DoubleStream> createFilter(DoublePredicate predicate)
- Specified by:
createFilterin interfaceDoubleIntermediateOperationFactory
-
createMap
public IntermediateOperation<DoubleStream,DoubleStream> createMap(DoubleUnaryOperator mapper)
- Specified by:
createMapin interfaceDoubleIntermediateOperationFactory
-
createMapToObj
public <U> IntermediateOperation<DoubleStream,Stream<U>> createMapToObj(DoubleFunction<? extends U> mapper)
- Specified by:
createMapToObjin interfaceDoubleIntermediateOperationFactory
-
createMapToLong
public IntermediateOperation<DoubleStream,LongStream> createMapToLong(DoubleToLongFunction mapper)
- Specified by:
createMapToLongin interfaceDoubleIntermediateOperationFactory
-
createMapToInt
public IntermediateOperation<DoubleStream,IntStream> createMapToInt(DoubleToIntFunction mapper)
- Specified by:
createMapToIntin interfaceDoubleIntermediateOperationFactory
-
createFlatMap
public IntermediateOperation<DoubleStream,DoubleStream> createFlatMap(DoubleFunction<? extends DoubleStream> mapper)
- Specified by:
createFlatMapin interfaceDoubleIntermediateOperationFactory
-
acquireDistinct
public IntermediateOperation<DoubleStream,DoubleStream> acquireDistinct()
- Specified by:
acquireDistinctin interfaceDoubleIntermediateOperationFactory
-
acquireSorted
public IntermediateOperation<DoubleStream,DoubleStream> acquireSorted()
- Specified by:
acquireSortedin interfaceDoubleIntermediateOperationFactory
-
createPeek
public IntermediateOperation<DoubleStream,DoubleStream> createPeek(DoubleConsumer action)
- Specified by:
createPeekin interfaceDoubleIntermediateOperationFactory
-
createLimit
public IntermediateOperation<DoubleStream,DoubleStream> createLimit(long maxSize)
- Specified by:
createLimitin interfaceDoubleIntermediateOperationFactory
-
createSkip
public IntermediateOperation<DoubleStream,DoubleStream> createSkip(long n)
- Specified by:
createSkipin interfaceDoubleIntermediateOperationFactory
-
createTakeWhile
public IntermediateOperation<DoubleStream,DoubleStream> createTakeWhile(DoublePredicate predicate)
- Specified by:
createTakeWhilein interfaceDoubleIntermediateOperationFactory
-
createDropWhile
public IntermediateOperation<DoubleStream,DoubleStream> createDropWhile(DoublePredicate predicate)
- Specified by:
createDropWhilein interfaceDoubleIntermediateOperationFactory
-
acquireBoxed
public IntermediateOperation<DoubleStream,Stream<Double>> acquireBoxed()
- Specified by:
acquireBoxedin interfaceDoubleIntermediateOperationFactory
-
-