Class StandardLongIntermediateOperationFactory
- java.lang.Object
-
- com.speedment.jpastreamer.pipeline.standard.intermediate.StandardLongIntermediateOperationFactory
-
- All Implemented Interfaces:
LongIntermediateOperationFactory
public final class StandardLongIntermediateOperationFactory extends Object implements LongIntermediateOperationFactory
-
-
Constructor Summary
Constructors Constructor Description StandardLongIntermediateOperationFactory()
-
Method Summary
-
-
-
Method Detail
-
createFilter
public IntermediateOperation<LongStream,LongStream> createFilter(LongPredicate predicate)
- Specified by:
createFilterin interfaceLongIntermediateOperationFactory
-
createMap
public IntermediateOperation<LongStream,LongStream> createMap(LongUnaryOperator mapper)
- Specified by:
createMapin interfaceLongIntermediateOperationFactory
-
createMapToObj
public <U> IntermediateOperation<LongStream,Stream<U>> createMapToObj(LongFunction<? extends U> mapper)
- Specified by:
createMapToObjin interfaceLongIntermediateOperationFactory
-
createMapToInt
public IntermediateOperation<LongStream,IntStream> createMapToInt(LongToIntFunction mapper)
- Specified by:
createMapToIntin interfaceLongIntermediateOperationFactory
-
createMapToDouble
public IntermediateOperation<LongStream,DoubleStream> createMapToDouble(LongToDoubleFunction mapper)
- Specified by:
createMapToDoublein interfaceLongIntermediateOperationFactory
-
createFlatMap
public IntermediateOperation<LongStream,LongStream> createFlatMap(LongFunction<? extends LongStream> mapper)
- Specified by:
createFlatMapin interfaceLongIntermediateOperationFactory
-
acquireDistinct
public IntermediateOperation<LongStream,LongStream> acquireDistinct()
- Specified by:
acquireDistinctin interfaceLongIntermediateOperationFactory
-
acquireSorted
public IntermediateOperation<LongStream,LongStream> acquireSorted()
- Specified by:
acquireSortedin interfaceLongIntermediateOperationFactory
-
createPeek
public IntermediateOperation<LongStream,LongStream> createPeek(LongConsumer action)
- Specified by:
createPeekin interfaceLongIntermediateOperationFactory
-
createLimit
public IntermediateOperation<LongStream,LongStream> createLimit(long maxSize)
- Specified by:
createLimitin interfaceLongIntermediateOperationFactory
-
createSkip
public IntermediateOperation<LongStream,LongStream> createSkip(long n)
- Specified by:
createSkipin interfaceLongIntermediateOperationFactory
-
createTakeWhile
public IntermediateOperation<LongStream,LongStream> createTakeWhile(LongPredicate predicate)
- Specified by:
createTakeWhilein interfaceLongIntermediateOperationFactory
-
createDropWhile
public IntermediateOperation<LongStream,LongStream> createDropWhile(LongPredicate predicate)
- Specified by:
createDropWhilein interfaceLongIntermediateOperationFactory
-
acquireBoxed
public IntermediateOperation<LongStream,Stream<Long>> acquireBoxed()
- Specified by:
acquireBoxedin interfaceLongIntermediateOperationFactory
-
acquireAsDoubleStream
public IntermediateOperation<LongStream,DoubleStream> acquireAsDoubleStream()
- Specified by:
acquireAsDoubleStreamin interfaceLongIntermediateOperationFactory
-
-