Example usage for Java java.util.stream StreamSupport fields, constructors, methods, implement or subclass
The text is from its open source code.
DoubleStream | doubleStream(Spliterator.OfDouble spliterator, boolean parallel) Creates a new sequential or parallel DoubleStream from a Spliterator.OfDouble . |
IntStream | intStream(Spliterator.OfInt spliterator, boolean parallel) Creates a new sequential or parallel IntStream from a Spliterator.OfInt . |
LongStream | longStream(Spliterator.OfLong spliterator, boolean parallel) Creates a new sequential or parallel LongStream from a Spliterator.OfLong . |
Stream | stream(Spliterator Creates a new sequential or parallel Stream from a Spliterator . |
Stream | stream(Supplier extends Spliterator Creates a new sequential or parallel Stream from a Supplier of Spliterator . |