Wednesday, July 3, 2024
HomeLanguagesJavaZoneOffsetTransitionRule getStandardOffset() method in Java with Example

ZoneOffsetTransitionRule getStandardOffset() method in Java with Example

The getStandardOffset() method of java.time.zone.ZoneOffsetTransitionRule class is used to get the object of standard Zone offset with respect to which the transition took place.

Syntax:

public ZoneOffset getStandardOffset()

Parameter: this method does not accept any parameter.

Return Value: This method returns the object of standard Zone offset with respect to which the transition took place.

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

Example 1:




// Java program to demonstrate
// getStandardOffset() 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(17),
                      ZoneOffset.ofTotalSeconds(12));
  
        // getting object of Zone offset
        // by using getStandardOffset() method
        ZoneOffset off
            = zonetrans1.getStandardOffset();
  
        // display the result
        System.out.println(
            "standard Zone Offset : " + off);
    }
}


Output:

standard Zone Offset : +00:00:08

Example 2:




// Java program to demonstrate
// getStandardOffset() 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(21),
                      ZoneOffset.ofTotalSeconds(17),
                      ZoneOffset.ofTotalSeconds(12));
  
        // getting object of Zone offset
        // by using getStandardOffset() method
        ZoneOffset off
            = zonetrans1.getStandardOffset();
  
        // display the result
        System.out.println(
            "standard Zone Offset : " + off);
    }
}


Output:

standard Zone Offset : +00:00:21

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

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