Module jpastreamer.pipeline
Interface LongIntermediateOperationFactory
public interface LongIntermediateOperationFactory
-
Method Summary
Modifier and TypeMethodDescriptioncreateDropWhile(LongPredicate predicate) createFilter(LongPredicate predicate) createFlatMap(LongFunction<? extends LongStream> mapper) createLimit(long maxSize) createMap(LongUnaryOperator mapper) createMapToInt(LongToIntFunction mapper) <U> IntermediateOperation<LongStream,Stream<U>> createMapToObj(LongFunction<? extends U> mapper) createPeek(LongConsumer action) createSkip(long n) createTakeWhile(LongPredicate predicate)
-
Method Details
-
createFilter
-
createMap
-
createMapToObj
-
createMapToInt
-
createMapToDouble
-
createFlatMap
IntermediateOperation<LongStream,LongStream> createFlatMap(LongFunction<? extends LongStream> mapper) -
acquireDistinct
IntermediateOperation<LongStream,LongStream> acquireDistinct() -
acquireSorted
IntermediateOperation<LongStream,LongStream> acquireSorted() -
createPeek
-
createLimit
-
createSkip
-
createTakeWhile
-
createDropWhile
-
acquireBoxed
IntermediateOperation<LongStream,Stream<Long>> acquireBoxed() -
acquireAsDoubleStream
IntermediateOperation<LongStream,DoubleStream> acquireAsDoubleStream()
-