Open In App

ZoneOffsetTransitionRule getOffsetAfter() method in Java with Example

Last Updated : 29 May, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The getOffsetAfter() method of java.time.zone.ZoneOffsetTransitionRule class is used to get the object of Zone offset at a particular instant where transition stops.

Syntax:

public ZoneOffset getOffsetAfter()

Parameter: this method does not accept any parameter.

Return Value: This method returns the object of Zone offset at a particular instant where transition stops.

Below are the examples to illustrate the getOffsetAfter() method:

Example 1:




// Java program to demonstrate
// getOffsetAfter() method
  
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.zone.*;
  
public class GFG {
    public static void main(String[] argv)
    {
  
        // creating and initializing
        // ZoneOffsetTransitionRule Object
        ZoneOffsetTransitionRule zonetrans1
            = ZoneOffsetTransitionRule
                  .of(
                      Month.JANUARY, 12,
                      DayOfWeek.SUNDAY,
                      LocalTime.of(03, 24, 45),
                      false,
                      ZoneOffsetTransitionRule
                          .TimeDefinition
                          .STANDARD,
                      ZoneOffset.ofTotalSeconds(8),
                      ZoneOffset.ofTotalSeconds(10),
                      ZoneOffset.ofTotalSeconds(12));
  
        // getting object of Zone offset
        // by using getOffsetAfter() method
        ZoneOffset off
            = zonetrans1.getOffsetAfter();
  
        // display the result
        System.out.println(
            "Zone Offset : " + off);
    }
}


Output:

Zone Offset : +00:00:12

Example 2:




// Java program to demonstrate
// getOffsetAfter() method
  
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.zone.*;
  
public class GFG {
    public static void main(String[] argv)
    {
  
        // creating and initializing
        // ZoneOffsetTransitionRule Object
        ZoneOffsetTransitionRule zonetrans1
            = ZoneOffsetTransitionRule
                  .of(
                      Month.JANUARY, 12,
                      DayOfWeek.SUNDAY,
                      LocalTime.of(03, 24, 45),
                      false,
                      ZoneOffsetTransitionRule
                          .TimeDefinition
                          .STANDARD,
                      ZoneOffset.ofTotalSeconds(8),
                      ZoneOffset.ofTotalSeconds(18),
                      ZoneOffset.ofTotalSeconds(17));
  
        // getting object of Zone offset
        // by using getOffsetAfter() method
        ZoneOffset off
            = zonetrans1.getOffsetAfter();
  
        // display the result
        System.out.println("Zone Offset : " + off);
    }
}


Output:

Zone Offset : +00:00:17

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/zone/ZoneOffsetTransitionRule.html#getOffsetAfter–



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads