@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum EventDataStoreStatus extends Enum<EventDataStoreStatus>
Enum Constant and Description |
---|
CREATED |
ENABLED |
PENDING_DELETION |
STARTING_INGESTION |
STOPPED_INGESTION |
STOPPING_INGESTION |
Modifier and Type | Method and Description |
---|---|
static EventDataStoreStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static EventDataStoreStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventDataStoreStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventDataStoreStatus CREATED
public static final EventDataStoreStatus ENABLED
public static final EventDataStoreStatus PENDING_DELETION
public static final EventDataStoreStatus STARTING_INGESTION
public static final EventDataStoreStatus STOPPING_INGESTION
public static final EventDataStoreStatus STOPPED_INGESTION
public static EventDataStoreStatus[] values()
for (EventDataStoreStatus c : EventDataStoreStatus.values()) System.out.println(c);
public static EventDataStoreStatus 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 toString()
toString
in class Enum<EventDataStoreStatus>
public static EventDataStoreStatus fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.