VOOZH about

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

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


  • Courses
  • Tutorials
  • Interview Prep

Optional of() method in Java with examples

Last Updated : 12 Jul, 2025
The of() 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. Syntax:
public static <T> 
 Optional<T> of(T value)
Parameters: This method accepts value as parameter of type T to create an Optional instance with this value. Return value: This method returns an instance of this Optional class with the specified value of the specified type. Exception: This method throws NullPointerException if the specified value is null. Below programs illustrate of() method: Program 1:
Output:
Optional: Optional[9455]
Program 2:
Output:
java.lang.NullPointerException
Reference: https://docs.oracle.com/javase/9/docs/api/java/util/Optional.html#of-T-
Comment