Package com.oracle.bmc.cims.model
Enum TimeZone
- java.lang.Object
- 
- java.lang.Enum<TimeZone>
- 
- com.oracle.bmc.cims.model.TimeZone
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<TimeZone>
 
 @Generated(value="OracleSDKGenerator", comments="API Version: 20181231") public enum TimeZone extends Enum<TimeZone> implements BmcEnumThe list of timezones supported by the Support Management API.
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TimeZonecreate(String key)StringgetValue()static TimeZonevalueOf(String name)Returns the enum constant of this type with the specified name.static TimeZone[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
GreenwichMeanTimepublic static final TimeZone GreenwichMeanTime 
 - 
EuropeanCentralTimepublic static final TimeZone EuropeanCentralTime 
 - 
EasternEuropeanTimepublic static final TimeZone EasternEuropeanTime 
 - 
EasternAfricanTimepublic static final TimeZone EasternAfricanTime 
 - 
MiddleEastTimepublic static final TimeZone MiddleEastTime 
 - 
NearEastTimepublic static final TimeZone NearEastTime 
 - 
PakistanLahoreTimepublic static final TimeZone PakistanLahoreTime 
 - 
IndiaStandardTimepublic static final TimeZone IndiaStandardTime 
 - 
BangladeshStandardTimepublic static final TimeZone BangladeshStandardTime 
 - 
VietnamStandardTimepublic static final TimeZone VietnamStandardTime 
 - 
ChinaTaiwanTimepublic static final TimeZone ChinaTaiwanTime 
 - 
JapanStandardTimepublic static final TimeZone JapanStandardTime 
 - 
AustraliaCentralTimepublic static final TimeZone AustraliaCentralTime 
 - 
AustraliaEasternTimepublic static final TimeZone AustraliaEasternTime 
 - 
SolomonStandardTimepublic static final TimeZone SolomonStandardTime 
 - 
NewZealandStandardTimepublic static final TimeZone NewZealandStandardTime 
 - 
MidwayIslandsTimepublic static final TimeZone MidwayIslandsTime 
 - 
HawaiiStandardTimepublic static final TimeZone HawaiiStandardTime 
 - 
AlaskaStandardTimepublic static final TimeZone AlaskaStandardTime 
 - 
PacificStandardTimepublic static final TimeZone PacificStandardTime 
 - 
MountainStandardTimepublic static final TimeZone MountainStandardTime 
 - 
CentralStandardTimepublic static final TimeZone CentralStandardTime 
 - 
EasternStandardTimepublic static final TimeZone EasternStandardTime 
 - 
PuertoRicoAndUsVirginIslandsTimepublic static final TimeZone PuertoRicoAndUsVirginIslandsTime 
 - 
CanadaNewfoundlandTimepublic static final TimeZone CanadaNewfoundlandTime 
 - 
ArgentinaStandardTimepublic static final TimeZone ArgentinaStandardTime 
 - 
MidAtlanticTimepublic static final TimeZone MidAtlanticTime 
 - 
CentralAfricanTimepublic static final TimeZone CentralAfricanTime 
 
- 
 - 
Method Detail- 
valuespublic static TimeZone[] 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 (TimeZone c : TimeZone.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static TimeZone 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-