atStartOfDayInZone method

ZonedDateTime atStartOfDayInZone(
  1. DateTimeZone zone
)

Resolves this local date into a ZonedDateTime in the given time zone representing the start of this date in the given zone.

This is a convenience method for calling ZonedDateTime.atStartOfDay.

  • zone: The time zone to map this local date into

Returns: The ZonedDateTime representing the earliest time on this date, in the given time zone.

  • SkippedTimeException: The entire day was skipped due to a very large time zone transition. (This is extremely rare.)

Implementation

ZonedDateTime atStartOfDayInZone(DateTimeZone zone)
{
  Preconditions.checkNotNull(zone, 'zone');
  return ZonedDateTime.atStartOfDay(this, zone);
}