Stay organized with collections
Save and categorize content based on your preferences.
java.util.stream
Interfaces
| BaseStream<T, S extends BaseStream<T, S>> |
Base interface for streams, which are sequences of elements supporting
sequential and parallel aggregate operations.
|
| Collector<T, A, R> |
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.
|
| DoubleStream |
A sequence of primitive double-valued elements supporting sequential and parallel
aggregate operations.
|
| DoubleStream.Builder |
A mutable builder for a DoubleStream.
|
| IntStream |
A sequence of primitive int-valued elements supporting sequential and parallel
aggregate operations.
|
| IntStream.Builder |
A mutable builder for an IntStream.
|
| LongStream |
A sequence of primitive long-valued elements supporting sequential and parallel
aggregate operations.
|
| LongStream.Builder |
A mutable builder for a LongStream.
|
| Stream<T> |
A sequence of elements supporting sequential and parallel aggregate
operations.
|
| Stream.Builder<T> |
A mutable builder for a Stream.
|
Classes
| Collectors |
Implementations of Collector that implement various useful reduction
operations, such as accumulating elements into collections, summarizing
elements according to various criteria, etc.
|
| StreamSupport |
Low-level utility methods for creating and manipulating streams.
|
Enums
| Collector.Characteristics |
Characteristics indicating properties of a Collector, which can
be used to optimize reduction implementations.
|
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2023-06-07 UTC.
[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"Missing the information I need"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"Too complicated / too many steps"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"Out of date"
},{
"type": "thumb-down",
"id": "samplesCodeIssue",
"label":"Samples / code issue"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"Other"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"Easy to understand"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"Solved my problem"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"Other"
}]