Class TemporalQueriesJalali
TemporalQuery.
This class provides common implementations of TemporalQuery.
These are defined here as they must be constants, and the definition
of lambdas does not guarantee that. By assigning them once here,
they become 'normal' Java constants.
Queries are a key tool for extracting information from temporal objects. They exist to externalize the process of querying, permitting different approaches, as per the strategy design pattern. Examples might be a query that checks if the date is the day before February 29th in a leap year, or calculates the number of days to your next birthday.
The TemporalField interface provides another mechanism for querying
temporal objects. That interface is limited to returning a long.
By contrast, queries can return any type.
There are two equivalent ways of using a TemporalQuery.
The first is to invoke the method on this interface directly.
The second is to use TemporalAccessor.query(TemporalQuery):
// these two lines are equivalent, but the second approach is recommended temporal = thisQuery.queryFrom(temporal); temporal = temporal.query(thisQuery);It is recommended to use the second approach,
query(TemporalQuery),
as it is a lot clearer to read in code.
The most common implementations are method references, such as
LocalDateJalali::from and ZoneId::from.
Additional common queries are provided to return:
- a LocalDateJalali,
-
Method Summary
Modifier and TypeMethodDescriptionstatic TemporalQuery<LocalDateJalali> A query forLocalDateJalalireturning null if not found.
-
Method Details
-
localDate
A query forLocalDateJalalireturning null if not found.This returns a
TemporalQuerythat can be used to query a temporal object for the local date. The query will return null if the temporal object cannot supply a local date.The query implementation examines the
EPOCH_DAYfield and uses it to create aLocalDateJalali.The method
ZoneOffset.from(TemporalAccessor)can be used as aTemporalQueryvia a method reference,LocalDateJalali::from. This query andLocalDateJalali::fromwill return the same result if the temporal object contains a date. If the temporal object does not contain a date, then the method reference will throw an exception, whereas this query will return null.- Returns:
- a query that can obtain the date of a temporal, not null
-