Enum TimeZoneName
- java.lang.Object
-
- java.lang.Enum<TimeZoneName>
-
- org.pepstock.charba.client.intl.enums.TimeZoneName
-
- All Implemented Interfaces:
Serializable
,Comparable<TimeZoneName>
,Key
public enum TimeZoneName extends Enum<TimeZoneName> implements Key
Enumerates the possible value to set the representation of the time zone name.- Author:
- Andrea "Stock" Stocchero
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
value()
Returns the name value of propertystatic TimeZoneName
valueOf(String name)
Returns the enum constant of this type with the specified name.static TimeZoneName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LONG
public static final TimeZoneName LONG
Long setting for time zone name (e.g., British Summer Time).
-
SHORT
public static final TimeZoneName SHORT
Short setting for time zone name (e.g., GMT+1).
-
-
Method Detail
-
values
public static TimeZoneName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TimeZoneName c : TimeZoneName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeZoneName valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-