Open In App

ZonedDateTime withLaterOffsetAtOverlap() method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

The withLaterOffsetAtOverlap() method of a ZonedDateTime class is used to return a copy of this ZonedDateTime 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 timeline. Due to this there are two valid offsets for the local date-time and calling withLaterOffsetAtOverlap method will return a ZonedDateTime 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:

public ZonedDateTime withLaterOffsetAtOverlap()

Parameters: This method accepts no parameters. Return value: This method returns a ZonedDateTime based on this date-time with the later offset. Below programs illustrate the withLaterOffsetAtOverlap() method: Program 1: 

Java




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




// Java program to demonstrate
// ZonedDateTime.withLaterOffsetAtOverlap() method
 
import java.time.*;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // create a ZonedDateTime object
        ZonedDateTime zonedDT
            = ZonedDateTime.of(
                LocalDateTime.of(2021, 11, 07, 1, 05, 53),
                ZoneId.of("US/Central"));
 
        // print ZonedDateTime
        System.out.println("Before withLaterOffsetAtOverlap(): "
                           + zonedDT);
 
        // apply withLaterOffsetAtOverlap()
        ZonedDateTime zonedDT2
            = zonedDT.withLaterOffsetAtOverlap();
 
        // print ZonedDateTime 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/10/docs/api/java/time/ZonedDateTime.html#withLaterOffsetAtOverlap()



Last Updated : 10 Apr, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads