Enum Class TimeZoneName

java.lang.Object
java.lang.Enum<TimeZoneName>
com.flowingcode.vaadin.addons.relativetime.TimeZoneName
All Implemented Interfaces:
Serializable, Comparable<TimeZoneName>, Constable

public enum TimeZoneName extends Enum<TimeZoneName>
Values for the time-zone-name attribute on <relative-time>. Forwarded to Intl.DateTimeFormat when Format.DATETIME is in effect.
  • Enum Constant Details

    • LONG

      public static final TimeZoneName LONG
      Localised name ("Pacific Daylight Time").
    • SHORT

      public static final TimeZoneName SHORT
      Localised abbreviation ("PDT").
    • SHORT_OFFSET

      public static final TimeZoneName SHORT_OFFSET
      Localised offset ("GMT-8").
    • LONG_OFFSET

      public static final TimeZoneName LONG_OFFSET
      Localised offset ("GMT-08:00").
    • SHORT_GENERIC

      public static final TimeZoneName SHORT_GENERIC
      Generic non-location ("PT").
    • LONG_GENERIC

      public static final TimeZoneName LONG_GENERIC
      Generic non-location ("Pacific Time").
  • Method Details

    • values

      public static TimeZoneName[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static TimeZoneName valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null