- java.time - Home
- java.time - Clock
- java.time - Duration
- java.time - Instant
- java.time - LocalDate
- java.time - LocalDateTime
- java.time - LocalTime
- java.time - MonthDay
- java.time - OffsetDateTime
- java.time - OffsetTime
- java.time - Period
- java.time - Year
- java.time - YearMonth
- java.time - ZonedDateTime
- java.time - ZoneId
- java.time - ZoneOffset
- java.time Package Enums
- java.time - Month
- java.time Useful Resources
- java.time - Discussion
java.time.ZoneId.getRules() Method Example
Description
The java.time.ZoneId.getRules() method gets the time-zone rules for this ID allowing calculations to be performed.
Declaration
Following is the declaration for java.time.ZoneId.getRules() method.
public abstract ZoneRules getRules()
Return Value
the rules, not null.
Exceptions
ZoneRulesException − if no rules are available for this ID.
Example
The following example shows the usage of java.time.ZoneId.getRules() method.
package com.tutorialspoint;
import java.time.ZoneId;
public class ZoneIdDemo {
public static void main(String[] args) {
ZoneId zone = ZoneId.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