YearMonth query(TemporalQuery<R> query)
queries
this year-month 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.YearMonth; import java.time.chrono.Chronology; import java.time.temporal.TemporalQueries; //from ww w .j a va 2 s . c o m public class Main { public static void main(String[] args) { YearMonth y = YearMonth.now(); Chronology s = y.query(TemporalQueries.chronology()); System.out.println(s); } }
The code above generates the following result.