atDate method

OffsetDateTime atDate(
  1. LocalDate date
)

Combines this OffsetTime with the given LocalDate into an OffsetDateTime.

  • date: The date to combine with this time-of-day.

Returns: The OffsetDateTime representation of this time-of-day on the given date.

Implementation

OffsetDateTime atDate(LocalDate date) => OffsetDateTime(date.at(clockTime), offset);