Wednesday, July 3, 2024
HomeLanguagesJavaChronoZonedDateTime withLaterOffsetAtOverlap() method in Java with Examples

ChronoZonedDateTime withLaterOffsetAtOverlap() method in Java with Examples

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–

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments