Thursday, September 4, 2025
HomeLanguagesJavaInstant query() Method in Java with Examples

Instant query() Method in Java with Examples

query() method of an Instant class used to query this instant using the specified query as parameter.The TemporalQuery object passed as parameter define the logic to be used to obtain the result from this instant.

Syntax:

public <R> R query(TemporalQuery<R> query)

Parameters: This method accepts only one parameter query which is the query to invoke.

Return value: This method returns the query result, null may be returned.

Exception: This method throws following Exceptions:

  • DateTimeException – if unable to query .
  • ArithmeticException – if numeric overflow occurs.

Below programs illustrate the query() method:

Program 1:




// Java program to demonstrate
// Instant.query() method
  
import java.time.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create Instant object
        Instant instant
            = Instant.parse("2018-12-31T10:15:30.00Z");
  
        // apply query method of Instant class
        String value
            = instant.query(TemporalQueries.precision())
                  .toString();
  
        // print the result
        System.out.println("Precision value for Instant is "
                           + value);
    }
}


Output:

Precision value for Instant is Nanos

Program 2: Showing if query did not found the required object then it returns null.




// Java program to demonstrate
// Instant.query() method
  
import java.time.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create Instant object
        Instant instant
            = Instant.parse("2018-12-31T10:15:30.00Z");
  
        // apply query method of Instant class
        // print the result
        System.out.println("Zone value for Instant is "
                           + instant.query(TemporalQueries.offset()));
    }
}


Output:

Zone value for Instant is null

Reference:
https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#query(java.time.temporal.TemporalQuery)

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS