public enum StartDateTimeType extends Enum<StartDateTimeType>
Java class for StartDateTimeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="StartDateTimeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="USE_START_DATE_TIME"/>
<enumeration value="IMMEDIATELY"/>
<enumeration value="ONE_HOUR_FROM_NOW"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
IMMEDIATELY
The entity will start serving immediately.
|
ONE_HOUR_FROM_NOW
The entity will start serving one hour from now.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
USE_START_DATE_TIME
Use the value in
#startDateTime. |
| Modifier and Type | Method and Description |
|---|---|
static StartDateTimeType |
fromValue(String v) |
String |
value() |
static StartDateTimeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StartDateTimeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StartDateTimeType USE_START_DATE_TIME
#startDateTime.public static final StartDateTimeType IMMEDIATELY
#startDateTime in the
request is ignored and will be set to the current time. Additionally,
#startDateTimeType will be set to
USE_START_DATE_TIME.public static final StartDateTimeType ONE_HOUR_FROM_NOW
#startDateTime
in the request is ignored and will be set to one hour from the current
time. Additionally, #startDateTimeType will be set to
USE_START_DATE_TIME.public static final StartDateTimeType UNKNOWN
public static StartDateTimeType[] values()
for (StartDateTimeType c : StartDateTimeType.values()) System.out.println(c);
public static StartDateTimeType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static StartDateTimeType fromValue(String v)
Copyright © 2018. All Rights Reserved.