Given a list of integers, find the maximum value element present in it using Stream functions?

This program finds the maximum value in a list of integers using Stream functions.

Code Example:

import java.util.*;
import java.util.stream.*;

public class FindMaxElement {

    public static void main(String args[]) {

        List<Integer> myList = Arrays.asList(10, 15, 8, 49, 25, 98, 98, 32, 15);

        int max = myList.stream().max(Integer::compare).get();

        System.out.println(max);
    }
}

Output:

98