About 27,700 results
Open links in new tab
  1. Stream.max() method in Java with Examples - GeeksforGeeks

    Dec 22, 2025 · The Stream.max () method in Java returns the maximum element of a stream based on a provided Comparator. It is …

  2. Finding Max/Min of a List or Collection - Baeldung

    Apr 4, 2025 · In this quick article, we explored how the max () and min () methods from the Java 8 Stream API can be used to find …

  3. Stream (Java Platform SE 8 ) - Oracle Help Center

    We create a stream of Widget objects via Collection.stream (), filter it to produce a stream containing only the red widgets, and then …

  4. Stream (Java SE 21 & JDK 21) - Oracle

    We create a stream of Widget objects via Collection.stream (), filter it to produce a stream containing only the red widgets, and then …

  5. How to find maximum value from a stream of Integer values in Java 8

    Jul 13, 2015 · In my case, need to convert a String (SeqNum) to integer and find a max value of it.

  6. Java Stream max () with Examples - HowToDoInJava

    Mar 16, 2022 · Learn to use Java Stream max () method to select the largest element in the stream according to the comparator …

  7. Java Stream max () Method

    The max () method in Java, part of the java.util.stream.Stream interface, is used to find the maximum element of the stream …

  8. Mastering `Stream.max` in Java - javaspring.net

    Jan 16, 2026 · This blog post will provide a comprehensive guide on Stream.max in Java, covering its fundamental concepts, usage …

  9. Stream.max() Method in Java with Examples - javaspring.net

    May 19, 2026 · This blog post will provide a detailed explanation of the `Stream.max ()` method, including its syntax, common …

  10. Java Stream max () Example

    This tutorial explains how to use the max () method of the Java Stream API. The max () method is used to determine the maximum …