Check out example codes for "stream java example". It will help you in understanding the concepts better.
Code Example 1
public class StreamBuilders
{
public static void main(String[] args)
{
Stream<Integer> stream = Stream.of( new Integer[]{1,2,3,4,5,6,7,8,9} );
stream.forEach(p -> System.out.println(p));
}
}
Learn ReactJs, React Native from akashmittal.com