Java java.util.stream StreamSupport fields, constructors, methods, implement or subclass

Example usage for Java java.util.stream StreamSupport fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.stream StreamSupport.

The text is from its open source code.

Method

DoubleStreamdoubleStream(Spliterator.OfDouble spliterator, boolean parallel)
Creates a new sequential or parallel DoubleStream from a Spliterator.OfDouble .
IntStreamintStream(Spliterator.OfInt spliterator, boolean parallel)
Creates a new sequential or parallel IntStream from a Spliterator.OfInt .
LongStreamlongStream(Spliterator.OfLong spliterator, boolean parallel)
Creates a new sequential or parallel LongStream from a Spliterator.OfLong .
Streamstream(Spliterator spliterator, boolean parallel)
Creates a new sequential or parallel Stream from a Spliterator .
Streamstream(Supplier> supplier, int characteristics, boolean parallel)
Creates a new sequential or parallel Stream from a Supplier of Spliterator .