Stream.ofNullable: The `ofNullable` method in the Stream API returns a sequential stream containing a single element if the specified element is non-null, or an empty stream if the element is null. It is a safe way to handle nullable values within a stream pipeline.

https://en.wikipedia.org/wiki/Java_version_history#JDK_9