Given the list of integers, find the first element of the list using Stream functions?

This program finds the first element of a list of integers using Stream functions.

Code Example:

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

public class FindFirstElement {

    public static void main(String args[]) {

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

        myList.stream()
                .findFirst()
                .ifPresent(System.out::println);
    }
}

Output:

10