Interface | Description |
---|---|
BaseStream<T,A,P,C,PL,OT,IT,S extends BaseStream<T,A,P,C,PL,OT,IT,S>> |
Note: It's copied from OpenJDK at: http://hg.openjdk.java.net/jdk8u/hs-dev/jdk
Base interface for streams, which are sequences of elements supporting sequential and parallel aggregate operations. |
Collector<T,A,R> |
Note: It's copied from OpenJDK at: http://hg.openjdk.java.net/jdk8u/hs-dev/jdk
A mutable reduction operation that accumulates input elements into a mutable result container, optionally transforming the accumulated result into a final representation after all input elements have been processed. |
Class | Description |
---|---|
ByteStream |
Note: It's copied from OpenJDK at: http://hg.openjdk.java.net/jdk8u/hs-dev/jdk
A sequence of primitive int-valued elements supporting sequential and parallel aggregate operations. |
CharStream |
Note: It's copied from OpenJDK at: http://hg.openjdk.java.net/jdk8u/hs-dev/jdk
A sequence of primitive int-valued elements supporting sequential and parallel aggregate operations. |
Collectors |
Note: It's copied from OpenJDK at: http://hg.openjdk.java.net/jdk8u/hs-dev/jdk
Implementations of Collector that implement various useful reduction
operations, such as accumulating elements into collections, summarizing
elements according to various criteria, etc. |
Collectors.MoreCollectors | |
DoubleStream |
Note: It's copied from OpenJDK at: http://hg.openjdk.java.net/jdk8u/hs-dev/jdk
A sequence of primitive double-valued elements supporting sequential and parallel aggregate operations. |
DoubleStream.DoubleStreamEx | |
EntryStream<K,V> | |
FloatStream |
Note: It's copied from OpenJDK at: http://hg.openjdk.java.net/jdk8u/hs-dev/jdk
A sequence of primitive float-valued elements supporting sequential and parallel aggregate operations. |
IntStream |
Note: It's copied from OpenJDK at: http://hg.openjdk.java.net/jdk8u/hs-dev/jdk
A sequence of primitive int-valued elements supporting sequential and parallel aggregate operations. |
IntStream.IntStreamEx | |
LongStream |
Note: It's copied from OpenJDK at: http://hg.openjdk.java.net/jdk8u/hs-dev/jdk
A sequence of primitive long-valued elements supporting sequential and parallel aggregate operations. |
LongStream.LongStreamEx | |
ShortStream |
Note: It's copied from OpenJDK at: http://hg.openjdk.java.net/jdk8u/hs-dev/jdk
A sequence of primitive int-valued elements supporting sequential and parallel aggregate operations. |
Stream<T> |
Note: It's copied from OpenJDK at: http://hg.openjdk.java.net/jdk8u/hs-dev/jdk,
And including methods copied from StreamEx: https://github.com/amaembo/streamex under Apache License, version 2.0.
|
Stream.StreamEx<T> |
Enum | Description |
---|---|
BaseStream.Splitor | |
Stream.LAIO |
LAIO = Loading All Intermediate Operations.
|
Stream.LRNO |
LAIO = Loading Right Now Operations.
|
Stream.PSO |
PSO = Parallel supported Operations.
|
Stream.SOO |
SOO = Sequential Only Operations.
|