Open In App

OptionalDouble isPresent() method in Java with examples

Last Updated : 01 May, 2019
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report
OptionalDouble help us to create an object which may or may not contain a Double value. The isPresent() method help us to get the answer that double value is present in OptionalDouble object or not. If a double value is present, returns true, otherwise false. Syntax:
public boolean isPresent()
Parameters: This method accepts nothing. Return value: This method returns true if a value is present, otherwise false Below programs illustrate isPresent() method: Program 1:
Output:
OptionalDouble has a value= true
Program 2:
Output:
Value absent
References: https://docs.oracle.com/javase/10/docs/api/java/util/OptionalDouble.html#isPresent()

Similar Reads