Open In App

ZoneId getRules() method in Java with Examples

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

The getRules() method of the ZoneId class in Java is used to get the time-zone rules for this ID allowing calculations to be performed. The rules provide the functionality associated with a time-zone like an offset for a given instant or local date-time. The rules are supplied by ZoneRulesProvider. An advanced provider may support dynamic updates to the rules without restarting the Java Runtime. If so, then the result of this method may change over time. Each individual call will still remain thread-safe.

Syntax:

public abstract ZoneRules getRules()

Parameters: This method accepts nothing.

Return value: This method returns the rules.

Below programs illustrate the getRules() method:
Program 1:




// Java program to demonstrate
// ZoneId.getRules() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create ZoneId object
        ZoneId zoneId
            = ZoneId.of("Europe/Paris");
  
        // get and print rules
        System.out.println("Rules: "
                           + zoneId.getRules());
    }
}


Output:

Rules: ZoneRules[currentStandardOffset=+01:00]

Program 2:




// Java program to demonstrate
// ZoneId.getRules() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create ZoneId object
        ZoneId zoneId
            = ZoneId.of("Asia/Calcutta");
  
        // get and print rules
        System.out.println("Rules: "
                           + zoneId.getRules());
    }
}


Output:

Rules: ZoneRules[currentStandardOffset=+05:30]

Reference:
https://docs.oracle.com/javase/10/docs/api/java/time/ZoneId.html#getRules()



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