java.time.ZoneOffset.getRules() Method Example



Description

The java.time.ZoneOffset.getRules() method gets the associated time-zone rules.

Declaration

Following is the declaration for java.time.ZoneOffset.getRules() method.

public ZoneRules getRules()

Return Value

the rules, not null.

Example

The following example shows the usage of java.time.ZoneOffset.getRules() method.

package com.tutorialspoint;

import java.time.ZoneOffset;

public class ZoneOffsetDemo {
   public static void main(String[] args) {
 
      ZoneOffset zone = ZoneOffset.of("Z");
      System.out.println(zone.getRules());  
   }
}

Let us compile and run the above program, this will produce the following result −

ZoneRules[currentStandardOffset=Z]
Advertisements