Class ZoneUtils

java.lang.Object
org.bardframework.time.zone.ZoneUtils

public class ZoneUtils extends Object
  • Constructor Details

    • ZoneUtils

      public ZoneUtils()
  • Method Details

    • getRules

      public static ZoneRules getRules(ZoneId zone)
      Gets the time-zone rules for this ID allowing calculations to be performed.

      The rules provide the functionality associated with a time-zone, such as finding the offset for a given instant or local date-time.

      A time-zone can be invalid if it is deserialized in a Java Runtime which does not have the same rules loaded as the Java Runtime that stored it. In this case, calling this method will throw a ZoneRulesException.

      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 be still remain thread-safe.

      ZoneOffset will always return a set of rules where the offset never changes.

      Parameters:
      zone - zone
      Returns:
      the rules, not null
      Throws:
      ZoneRulesException - if no rules are available for this ID