Friday, December 12, 2025
HomeLanguagesJavaOptional isPresent() method in Java with examples

Optional isPresent() method in Java with examples

The isPresent() method of java.util.Optional class in Java is used to find out if there is a value present in this Optional instance. If there is no value present in this Optional instance, then this method returns false, else true.

Syntax:

public boolean isPresent()

Parameters: This method do not accept any parameter.

Return value: This method returns a boolean value stating whether if there is a value present in this Optional instance.

Below programs illustrate isPresent() method:
Program 1:




// Java program to demonstrate
// Optional.isPresent() 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);
  
        // check for the value
        System.out.println("Is any value present: "
                           + op.isPresent());
    }
}


Output:

Optional: Optional[9455]
Is any value present: true

Program 2:




// Java program to demonstrate
// Optional.isPresent() method
  
import java.util.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // create a Optional
        Optional<Integer> op
            = Optional.empty();
  
        // print value
        System.out.println("Optional: "
                           + op);
  
        try {
  
            // check for the value
            System.out.println("Is any value present: "
                               + op.isPresent());
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

Optional: Optional.empty
Is any value present: false

Reference: https://docs.oracle.com/javase/9/docs/api/java/util/Optional.html#isPresent–

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32444 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6813 POSTS0 COMMENTS
Nicole Veronica
11951 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12027 POSTS0 COMMENTS
Shaida Kate Naidoo
6945 POSTS0 COMMENTS
Ted Musemwa
7198 POSTS0 COMMENTS
Thapelo Manthata
6892 POSTS0 COMMENTS
Umr Jansen
6881 POSTS0 COMMENTS