org.threeten.bp.temporal

TemporalQueries

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.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TemporalQueries
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. val chronology: TemporalQuery[Chronology]

    A query for the Chronology.

    A query for the Chronology.

    This queries a TemporalAccessor for the chronology. If the target TemporalAccessor represents 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 as LocalTime, will return null.

    The result from JDK classes implementing TemporalAccessor is as follows:
    LocalDate returns IsoChronology.INSTANCE
    LocalTime returns null (does not represent a date)
    LocalDateTime returns IsoChronology.INSTANCE
    ZonedDateTime returns IsoChronology.INSTANCE
    OffsetTime returns null (does not represent a date)
    OffsetDateTime returns IsoChronology.INSTANCE
    ChronoLocalDate returns the associated chronology
    ChronoLocalDateTime returns the associated chronology
    ChronoZonedDateTime returns the associated chronology
    Era returns the associated chronology
    DayOfWeek returns null (shared across chronologies)
    Month returns IsoChronology.INSTANCE
    Year returns IsoChronology.INSTANCE
    YearMonth returns IsoChronology.INSTANCE
    MonthDay returns null IsoChronology.INSTANCE
    ZoneOffset returns null (does not represent a date)
    Instant returns null (does not represent a date)

    The method Chronology#from(TemporalAccessor) can be used as a TemporalQuery via 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

  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. val localDate: TemporalQuery[LocalDate]

    A query for LocalDate returning null if not found.

    A query for LocalDate returning null if not found.

    This returns a TemporalQuery that 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 ChronoField#EPOCH_DAY EPOCH_DAY field and uses it to create a LocalDate.

    returns

    a query that can obtain the date of a temporal, not null

  16. val localTime: TemporalQuery[LocalTime]

    A query for LocalTime returning null if not found.

    A query for LocalTime returning null if not found.

    This returns a TemporalQuery that 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 ChronoField#NANO_OF_DAY NANO_OF_DAY field and uses it to create a LocalTime.

    returns

    a query that can obtain the date of a temporal, not null

  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. val offset: TemporalQuery[ZoneOffset]

    A query for ZoneOffset returning null if not found.

    A query for ZoneOffset returning null if not found.

    This returns a TemporalQuery that 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 ChronoField#OFFSET_SECONDS OFFSET_SECONDS field and uses it to create a ZoneOffset.

    returns

    a query that can obtain the offset of a temporal, not null

  21. val precision: TemporalQuery[TemporalUnit]

    A query for the smallest supported unit.

    A query for the smallest supported unit.

    This queries a TemporalAccessor for the time precision. If the target TemporalAccessor represents a consistent or complete date-time, date or time then this must return the smallest precision actually supported. Note that fields such as NANO_OF_DAY and NANO_OF_SECOND are defined to always return ignoring the precision, thus this is the only way to find the actual smallest supported unit. For example, were GregorianCalendar to implement TemporalAccessor it would return a precision of MILLIS.

    The result from JDK classes implementing TemporalAccessor is as follows:
    LocalDate returns DAYS
    LocalTime returns NANOS
    LocalDateTime returns NANOS
    ZonedDateTime returns NANOS
    OffsetTime returns NANOS
    OffsetDateTime returns NANOS
    ChronoLocalDate returns DAYS
    ChronoLocalDateTime returns NANOS
    ChronoZonedDateTime returns NANOS
    Era returns ERAS
    DayOfWeek returns DAYS
    Month returns MONTHS
    Year returns YEARS
    YearMonth returns MONTHS
    MonthDay returns null (does not represent a complete date or time)
    ZoneOffset returns null (does not represent a date or time)
    Instant returns NANOS

    returns

    a query that can obtain the precision of a temporal, not null

  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  23. def toString(): String

    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. val zone: TemporalQuery[ZoneId]

    A lenient query for the ZoneId, falling back to the ZoneOffset.

    A lenient query for the ZoneId, falling back to the ZoneOffset.

    This queries a TemporalAccessor for 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 ChronoField#OFFSET_SECONDS offset-seconds field and uses it to create a ZoneOffset.

    The method ZoneId#from(TemporalAccessor) can be used as a TemporalQuery via 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

  28. val zoneId: TemporalQuery[ZoneId]

    A strict query for the ZoneId.

    A strict query for the ZoneId.

    This queries a TemporalAccessor for the zone. The zone is only returned if the date-time conceptually contains a ZoneId. It will not be returned if the date-time only conceptually has an ZoneOffset. Thus a ZonedDateTime will return the result of getZone(), but an OffsetDateTime will return null.

    In most cases, applications should use #ZONE as this query is too strict.

    The result from JDK classes implementing TemporalAccessor is as follows:
    LocalDate returns null
    LocalTime returns null
    LocalDateTime returns null
    ZonedDateTime returns the associated zone
    OffsetTime returns null
    OffsetDateTime returns null
    ChronoLocalDate returns null
    ChronoLocalDateTime returns null
    ChronoZonedDateTime returns the associated zone
    Era returns null
    DayOfWeek returns null
    Month returns null
    Year returns null
    YearMonth returns null
    MonthDay returns null
    ZoneOffset returns null
    Instant returns null

    returns

    a query that can obtain the zone ID of a temporal, not null

Inherited from AnyRef

Inherited from Any

Ungrouped