Returns a copy of this ZonedDateTime, changing the zone offset to the later of the two valid offsets at a local time-line overlap (daylight savings switch). Calling this method will return a zoned date-time with the later of the two valid zones.
public static void main(String... args) { //one hour overlap between 1am to 2am on Nov 5, 2017. ZonedDateTime d = ZonedDateTime.of(LocalDateTime.of(2017, 11, 5, 1, 15), ZoneId.of("US/Central")); System.out.println(d);