Thursday, February 5, 2026
HomeLanguagesJavaOptionalInt isPresent() method in Java with examples

OptionalInt isPresent() method in Java with examples

OptionalInt help us to create an object which may or may not contain a Int value. The isPresent() method help us to get the answer that Int value is present in OptionalInt object or not. If an int value is present in this object, this method returns true, otherwise false.

Syntax:

public boolean isPresent()

Parameters: This method accepts nothing.

Return value: This method returns true if an int value is present, otherwise false

Below programs illustrate isPresent() method:
Program 1:




// Java program to demonstrate
// OptionalInt.isPresent() method
  
import java.util.OptionalInt;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // create a OptionalInt
        OptionalInt opInt = OptionalInt.of(12345);
  
        // get value using isPresent()
        System.out.println("OptionalInt has a value= "
                           + opInt.isPresent());
    }
}


Output:

OptionalInt has a value= true

Program 2:




// Java program to demonstrate
// OptionalInt.isPresent() method
  
import java.util.OptionalInt;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // create a OptionalInt
        OptionalInt opInt = OptionalInt.empty();
  
        // try to get that value is present or not
        boolean response = opInt.isPresent();
  
        if (response)
            System.out.println("Value present");
        else
            System.out.println("Value absent");
    }
}


Output:

Value absent

References: https://docs.oracle.com/javase/10/docs/api/java/util/OptionalInt.html#isPresent()

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32487 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6861 POSTS0 COMMENTS
Nicole Veronica
11983 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12071 POSTS0 COMMENTS
Shaida Kate Naidoo
6994 POSTS0 COMMENTS
Ted Musemwa
7233 POSTS0 COMMENTS
Thapelo Manthata
6945 POSTS0 COMMENTS
Umr Jansen
6926 POSTS0 COMMENTS