OffsetDateTime query(TemporalQuery<R> query)
queries
this date-time using the specified query.
query
has the following syntax.
public <R> R query(TemporalQuery<R> query)
The following example shows how to use query
.
import java.time.LocalDate; import java.time.OffsetDateTime; import java.time.temporal.TemporalQueries; /*from www . j a va2 s.com*/ public class Main { public static void main(String[] args) { OffsetDateTime o = OffsetDateTime.now(); LocalDate d = o.query(TemporalQueries.localDate()); System.out.println(d); } }
The code above generates the following result.