Last Updated : 12 Jul, 2025
The
of()method of
java.util.Optional classin 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
valueas parameter of type T to create an Optional instance with this value.
Return value:This method returns an instance of this
Optional classwith the specified value of the specified type.
Exception:This method throws
NullPointerExceptionif the specified value is null. Below programs illustrate of() method:
Program 1: Java
// Java program to demonstrate
// Optional.of() method
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// create a Optional
Optional<Integer> op
= Optional.of(9455);
// print value
System.out.println("Optional: "
+ op);
}
}
Output:
Optional: Optional[9455]Program 2: Java
// Java program to demonstrate
// Optional.of() method
import java.util.*;
public class GFG {
public static void main(String[] args)
{
try {
// create a Optional
Optional<Integer> op
= Optional.of(null);
// print value
System.out.println("Optional: "
+ op);
}
catch (Exception e) {
System.out.println(e);
}
}
}
Output:
java.lang.NullPointerExceptionReference: https://docs.oracle.com/javase/9/docs/api/java/util/Optional.html#of-T-
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4