object TemporalQueries
Common implementations of TemporalQuery.
This class provides common implementations of TemporalQuery.
These queries are primarily used as optimizations, allowing the internals
of other objects to be extracted effectively. Note that application code
can also use the from(TemporalAccessor) method on most temporal
objects as a method reference matching the query interface, such as
LocalDate::from and ZoneId::from.
There are two equivalent ways of using a TemporalQuery.
The first is to invoke the method on the interface directly.
The second is to use TemporalAccessor#query(TemporalQuery):
// these two lines are equivalent, but the second approach is recommended dateTime = query.queryFrom(dateTime); dateTime = dateTime.query(query);It is recommended to use the second approach,
query(TemporalQuery),
as it is a lot clearer to read in code.Specification for implementors
This is a thread-safe utility class. All returned adjusters are immutable and thread-safe.
- Alphabetic
- By Inheritance
- TemporalQueries
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- lazy val chronology: TemporalQuery[Chronology]
A query for the
Chronology.A query for the
Chronology.This queries a
TemporalAccessorfor the chronology. If the targetTemporalAccessorrepresents a date, or part of a date, then it should return the chronology that the date is expressed in. As a result of this definition, objects only representing time, such asLocalTime, will return null.The result from JDK classes implementing
TemporalAccessoris as follows:
LocalDatereturnsIsoChronology.INSTANCE
LocalTimereturns null (does not represent a date)
LocalDateTimereturnsIsoChronology.INSTANCE
ZonedDateTimereturnsIsoChronology.INSTANCE
OffsetTimereturns null (does not represent a date)
OffsetDateTimereturnsIsoChronology.INSTANCE
ChronoLocalDatereturns the associated chronology
ChronoLocalDateTimereturns the associated chronology
ChronoZonedDateTimereturns the associated chronology
Erareturns the associated chronology
DayOfWeekreturns null (shared across chronologies)
MonthreturnsIsoChronology.INSTANCE
YearreturnsIsoChronology.INSTANCE
YearMonthreturnsIsoChronology.INSTANCE
MonthDayreturns nullIsoChronology.INSTANCE
ZoneOffsetreturns null (does not represent a date)
Instantreturns null (does not represent a date)The method
Chronology#from(TemporalAccessor)can be used as aTemporalQueryvia a method reference,Chrono::from. That method is equivalent to this query, except that it throws an exception if a chronology cannot be obtained.- returns
a query that can obtain the chronology of a temporal, not null
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- lazy val localDate: TemporalQuery[LocalDate]
A query for
LocalDatereturning null if not found.A query for
LocalDatereturning 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 aLocalDate.- returns
a query that can obtain the date of a temporal, not null
- lazy val localTime: TemporalQuery[LocalTime]
A query for
LocalTimereturning null if not found.A query for
LocalTimereturning null if not found.This returns a
TemporalQuerythat can be used to query a temporal object for the local time. The query will return null if the temporal object cannot supply a local time.The query implementation examines the
NANO_OF_DAYfield and uses it to create aLocalTime.- returns
a query that can obtain the date of a temporal, not null
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- lazy val offset: TemporalQuery[ZoneOffset]
A query for
ZoneOffsetreturning null if not found.A query for
ZoneOffsetreturning null if not found.This returns a
TemporalQuerythat can be used to query a temporal object for the offset. The query will return null if the temporal object cannot supply an offset.The query implementation examines the
OFFSET_SECONDSfield and uses it to create aZoneOffset.- returns
a query that can obtain the offset of a temporal, not null
- lazy val precision: TemporalQuery[TemporalUnit]
A query for the smallest supported unit.
A query for the smallest supported unit.
This queries a
TemporalAccessorfor the time precision. If the targetTemporalAccessorrepresents a consistent or complete date-time, date or time then this must return the smallest precision actually supported. Note that fields such asNANO_OF_DAYandNANO_OF_SECONDare defined to always return ignoring the precision, thus this is the only way to find the actual smallest supported unit. For example, wereGregorianCalendarto implementTemporalAccessorit would return a precision ofMILLIS.The result from JDK classes implementing
TemporalAccessoris as follows:
LocalDatereturnsDAYS
LocalTimereturnsNANOS
LocalDateTimereturnsNANOS
ZonedDateTimereturnsNANOS
OffsetTimereturnsNANOS
OffsetDateTimereturnsNANOS
ChronoLocalDatereturnsDAYS
ChronoLocalDateTimereturnsNANOS
ChronoZonedDateTimereturnsNANOS
ErareturnsERAS
DayOfWeekreturnsDAYS
MonthreturnsMONTHS
YearreturnsYEARS
YearMonthreturnsMONTHS
MonthDayreturns null (does not represent a complete date or time)
ZoneOffsetreturns null (does not represent a date or time)
InstantreturnsNANOS
- returns
a query that can obtain the precision of a temporal, not null
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- lazy val zone: TemporalQuery[ZoneId]
A lenient query for the
ZoneId, falling back to theZoneOffset.A lenient query for the
ZoneId, falling back to theZoneOffset.This queries a
TemporalAccessorfor the zone. It first tries to obtain the zone, using#zoneId(). If that is not found it tries to obtain the#offset().In most cases, applications should use this query rather than
#zoneId().This query examines the
offset-secondsfield and uses it to create aZoneOffset.The method
ZoneId#from(TemporalAccessor)can be used as aTemporalQueryvia a method reference,ZoneId::from. That method is equivalent to this query, except that it throws an exception if a zone cannot be obtained.- returns
a query that can obtain the zone ID or offset of a temporal, not null
- lazy val zoneId: TemporalQuery[ZoneId]
A strict query for the
ZoneId.A strict query for the
ZoneId.This queries a
TemporalAccessorfor the zone. The zone is only returned if the date-time conceptually contains aZoneId. It will not be returned if the date-time only conceptually has anZoneOffset. Thus aZonedDateTimewill return the result ofgetZone(), but anOffsetDateTimewill return null.In most cases, applications should use
#ZONEas this query is too strict.The result from JDK classes implementing
TemporalAccessoris as follows:
LocalDatereturns null
LocalTimereturns null
LocalDateTimereturns null
ZonedDateTimereturns the associated zone
OffsetTimereturns null
OffsetDateTimereturns null
ChronoLocalDatereturns null
ChronoLocalDateTimereturns null
ChronoZonedDateTimereturns the associated zone
Erareturns null
DayOfWeekreturns null
Monthreturns null
Yearreturns null
YearMonthreturns null
MonthDayreturns null
ZoneOffsetreturns null
Instantreturns null
- returns
a query that can obtain the zone ID of a temporal, not null