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