Enum Class TimeZoneName
- All Implemented Interfaces:
Serializable,Comparable<TimeZoneName>,Constable
Values for the
time-zone-name attribute on <relative-time>. Forwarded to
Intl.DateTimeFormat when Format.DATETIME is in effect.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionLocalised name ("Pacific Daylight Time").Generic non-location ("Pacific Time").Localised offset ("GMT-08:00").Localised abbreviation ("PDT").Generic non-location ("PT").Localised offset ("GMT-8"). -
Method Summary
Modifier and TypeMethodDescriptionstatic TimeZoneNameReturns the enum constant of this class with the specified name.static TimeZoneName[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LONG
Localised name ("Pacific Daylight Time"). -
SHORT
Localised abbreviation ("PDT"). -
SHORT_OFFSET
Localised offset ("GMT-8"). -
LONG_OFFSET
Localised offset ("GMT-08:00"). -
SHORT_GENERIC
Generic non-location ("PT"). -
LONG_GENERIC
Generic non-location ("Pacific Time").
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-