The
stream() method of
java.util.Optional class in Java is used to get the sequential stream of the only value present in this Optional instance. If there is no value present in this Optional instance, then this method returns returns an empty Stream.
Syntax:
public Stream<T> stream()
Parameters: This method do not accept any parameter.
Return value: This method returns the sequential stream of the only value present in this Optional instance. If there is no value present in this Optional instance, then this method returns an empty Stream.
Below programs illustrate stream() method:
Note: Below programs require JDK 9 and above to execute.
Program 1:
Output:
Optional: Optional[9455]
Getting the Stream:
9455
Program 2: