Package com.chrt.api.types
Enum TimezoneEnum.Value
- java.lang.Object
-
- java.lang.Enum<TimezoneEnum.Value>
-
- com.chrt.api.types.TimezoneEnum.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TimezoneEnum.Value>
- Enclosing class:
- TimezoneEnum
public static enum TimezoneEnum.Value extends java.lang.Enum<TimezoneEnum.Value>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimezoneEnum.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TimezoneEnum.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AMERICA_LOS_ANGELES
public static final TimezoneEnum.Value AMERICA_LOS_ANGELES
-
AMERICA_DENVER
public static final TimezoneEnum.Value AMERICA_DENVER
-
AMERICA_CHICAGO
public static final TimezoneEnum.Value AMERICA_CHICAGO
-
AMERICA_NEW_YORK
public static final TimezoneEnum.Value AMERICA_NEW_YORK
-
AMERICA_ANCHORAGE
public static final TimezoneEnum.Value AMERICA_ANCHORAGE
-
PACIFIC_HONOLULU
public static final TimezoneEnum.Value PACIFIC_HONOLULU
-
EUROPE_LONDON
public static final TimezoneEnum.Value EUROPE_LONDON
-
EUROPE_PARIS
public static final TimezoneEnum.Value EUROPE_PARIS
-
EUROPE_BERLIN
public static final TimezoneEnum.Value EUROPE_BERLIN
-
EUROPE_AMSTERDAM
public static final TimezoneEnum.Value EUROPE_AMSTERDAM
-
EUROPE_ROME
public static final TimezoneEnum.Value EUROPE_ROME
-
EUROPE_MADRID
public static final TimezoneEnum.Value EUROPE_MADRID
-
EUROPE_ZURICH
public static final TimezoneEnum.Value EUROPE_ZURICH
-
EUROPE_STOCKHOLM
public static final TimezoneEnum.Value EUROPE_STOCKHOLM
-
EUROPE_WARSAW
public static final TimezoneEnum.Value EUROPE_WARSAW
-
EUROPE_ATHENS
public static final TimezoneEnum.Value EUROPE_ATHENS
-
UTC
public static final TimezoneEnum.Value UTC
-
UNKNOWN
public static final TimezoneEnum.Value UNKNOWN
-
-
Method Detail
-
values
public static TimezoneEnum.Value[] 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 (TimezoneEnum.Value c : TimezoneEnum.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimezoneEnum.Value valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-