Java Streams - LongStream sorted() example








LongStream sorted() returns a stream consisting of the elements of this stream in sorted order. This is a stateful intermediate operation.

Syntax

sorted has the following syntax.

LongStream sorted()

Example

The following example shows how to use sorted.

import java.util.stream.LongStream;

public class Main {
  public static void main(String[] args) {
    LongStream b = LongStream.of(1L, 2L, Long.MAX_VALUE, Long.MIN_VALUE);

    b.sorted().forEach(System.out::println);
  }
}

The code above generates the following result.