Open In App

ZonedDateTime query() Method in Java with Examples

Last Updated : 10 Jan, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
query() method of an ZonedDateTime class used to query this ZonedDateTime using the specified query as parameter.The TemporalQuery object passed as parameter define the logic to be used to obtain the result from this ZonedDateTime. 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:
Output:
Precision value for ZonedDateTime is Nanos
Program 2:
Output:
offset value for ZonedDateTime is +02:00
References: https://docs.oracle.com/javase/10/docs/api/java/time/ZonedDateTime.html#query(java.time.temporal.TemporalQuery)

Similar Reads