Open In App

ChronoZonedDateTime withLaterOffsetAtOverlap() method in Java with Examples

Last Updated : 27 May, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The withLaterOffsetAtOverlap() method of a ChronoZonedDateTime interface is used to return a copy of this ChronoZonedDateTime object after changing the zone offset to the later of the two valid offsets at a local time-line overlap. The overlap happens when Daylight saving time finishes and one hour is returned to the timeline. FDue to this there are two valid offsets for the local date-time and calling withLaterOffsetAtOverlap method will return a ChronoZonedDateTime with the later of the two zones. If this method is called when it is not an overlap, this is returned. This instance is immutable and unaffected by this method call.

Syntax:

ChronoZonedDateTime withLaterOffsetAtOverlap()

Parameters: This method accepts no parameters.

Return value: This method returns a ChronoZonedDateTime based on this date-time with the later offset.

Below programs illustrate the withLaterOffsetAtOverlap() method:

Program 1:




// Java program to demonstrate
// ChronoZonedDateTime.withLaterOffsetAtOverlap() method
  
import java.time.*;
import java.time.chrono.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ChronoZonedDateTime object
        ChronoZonedDateTime zonedDT
            = ZonedDateTime.of(
                LocalDateTime.of(2018, 11, 4, 1, 25, 43),
                ZoneId.of("US/Central"));
  
        // print ChronoZonedDateTime
        System.out.println("Before withLaterOffsetAtOverlap(): "
                           + zonedDT);
  
        // apply withLaterOffsetAtOverlap()
        ChronoZonedDateTime zonedDT2
            = zonedDT.withLaterOffsetAtOverlap();
  
        // print ChronoZonedDateTime
        // after withLaterOffsetAtOverlap()
        System.out.println("After withLaterOffsetAtOverlap(): "
                           + zonedDT2);
    }
}


Output:

Before withLaterOffsetAtOverlap(): 2018-11-04T01:25:43-05:00[US/Central]
After withLaterOffsetAtOverlap(): 2018-11-04T01:25:43-06:00[US/Central]

Program 2:




// Java program to demonstrate
// ChronoZonedDateTime.withLaterOffsetAtOverlap() method
  
import java.time.*;
import java.time.chrono.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ChronoZonedDateTime object
        ChronoZonedDateTime zonedDT
            = ZonedDateTime.of(
                LocalDateTime.of(2021, 11, 07, 1, 05, 53),
                ZoneId.of("US/Central"));
  
        // print ChronoZonedDateTime
        System.out.println("Before withLaterOffsetAtOverlap(): "
                           + zonedDT);
  
        // apply withLaterOffsetAtOverlap()
        ChronoZonedDateTime zonedDT2
            = zonedDT.withLaterOffsetAtOverlap();
  
        // print ChronoZonedDateTime
        // after withLaterOffsetAtOverlap()
        System.out.println("After withLaterOffsetAtOverlap(): "
                           + zonedDT2);
    }
}


Output:

Before withLaterOffsetAtOverlap(): 2021-11-07T01:05:53-05:00[US/Central]
After withLaterOffsetAtOverlap(): 2021-11-07T01:05:53-06:00[US/Central]

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoZonedDateTime.html#withLaterOffsetAtOverlap–



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads