Last Updated : 10 Jan, 2019
query()method of an
ZonedDateTimeclass 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
querywhich is the query to invoke.
Return value:This method returns the query result, null may be returned.
Exception:This method throws following Exceptions:
Below programs illustrate the query() method:
Program 1: Java
// Java program to demonstrate
// ZonedDateTime.query() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create ZonedDateTime object
ZonedDateTime zlt
= ZonedDateTime.parse(
"2018-10-25T23:12:31.123+02:00[Europe/Paris]");
// apply the query method of ZonedDateTime class
String value
= zlt.query(
TemporalQueries.precision())
.toString();
// print the result
System.out.println("Precision value"
+ " for ZonedDateTime is "
+ value);
}
}
Output:
Precision value for ZonedDateTime is NanosProgram 2: Java
// Java program to demonstrate
// ZonedDateTime.query() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create ZonedDateTime object
ZonedDateTime zlt
= ZonedDateTime.parse(
"2018-10-25T23:12:31.123+02:00[Europe/Paris]");
// apply query method of ZonedDateTime class
// print the result
System.out.println("offset value for "
+ "ZonedDateTime is "
+ zlt.query(
TemporalQueries.offset()));
}
}
Output:
offset value for ZonedDateTime is +02:00References: https://docs.oracle.com/javase/10/docs/api/java/time/ZonedDateTime.html#query(java.time.temporal.TemporalQuery)
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