VOOZH about

URL: https://www.geeksforgeeks.org/java/optional-ofnullable-method-in-java-with-examples/

⇱ Optional ofNullable() method in Java with examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Optional ofNullable() method in Java with examples

Last Updated : 12 Jul, 2025
The ofNullable() method of java.util.Optional class in Java is used to get an instance of this Optional class with the specified value of the specified type. If the specified value is null, then this method returns an empty instance of the Optional class. Syntax:
public static <T>
 Optional<T> ofNullable(T value)
Parameters: This method accepts value as parameter of type T to create an Optional instance with this value. It can be null. Return value: This method returns an instance of this Optional class with the specified value of the specified type. If the specified value is null, then this method returns an empty instance of the Optional class. Below programs illustrate ofNullable() method: Program 1:
Output:
Optional 1: Optional[9455]
Program 2:
Comment