Java 9: Stream API Improvements

In Java 9, following methods are added to Stream interface of stream package. These methods are default and static.

The takeWhile() Method

This method is included in Stream interface and used to collect the elements into a stream. It takes all the elements till the condition specified as predicate.

For example, we want to collect a few elements from a stream of elements; for this purpose, we can use takeWhile() method.

The following is the syntax of the method.

Example

Output

[20, 30, 40, 62] 20
30
40
62

The dropWhile() Method

This method is just opposite of takeWhile(). It drops the result when the specified condition occurs and takes rest of elements.

If stream is ordered then it returns a stream that contains remaining elements after dropping the elements. If the stream is unordered, it returns a stream that includes the remaining elements after dropping a subset of elements. The following is the syntax of the method.

Example

Output

[85, 21] 85
21

The ofNullable() Method

This method is used for null checking and returns either a sequential Stream of a single element or an empty Stream. The syntax of the method is given below.

Example

Output

12

The iterate() Method

This method is added into Java 9 that helps to iterate over a sequence of stream and takes three arguments. The first argument is called seed and used to initialize a stream, the second argument is called predicate and used to specify the condition while third argument is used to generate next elements.

The syntax of the method is given below.

Example

Output

1
2
3
4

This is similar to writing a for loop as below:

That’s all about Java 9 Stream API improvements.

Was this post helpful?

Leave a Reply

Your email address will not be published. Required fields are marked *