Example usage for java.util.stream LongStream max

List of usage examples for java.util.stream LongStream max

Introduction

In this page you can find the example usage for java.util.stream LongStream max.

Prototype

OptionalLong max();

Source Link

Document

Returns an OptionalLong describing the maximum element of this stream, or an empty optional if this stream is empty.

Usage

From source file:Main.java

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

    if (o.isPresent()) {
        System.out.println(o.getAsLong());
    } else {// w  w  w  .  jav  a 2 s.  c om
        System.out.println("no value");
    }
}