public enum EventCode extends Enum<EventCode>
Modifier and Type | Method and Description |
---|---|
static EventCode |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static EventCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventCode GENERIC_EVENT
public static final EventCode FLEET_CREATED
public static final EventCode FLEET_DELETED
public static final EventCode FLEET_SCALING_EVENT
public static final EventCode FLEET_STATE_DOWNLOADING
public static final EventCode FLEET_STATE_VALIDATING
public static final EventCode FLEET_STATE_BUILDING
public static final EventCode FLEET_STATE_ACTIVATING
public static final EventCode FLEET_STATE_ACTIVE
public static final EventCode FLEET_STATE_ERROR
public static final EventCode FLEET_INITIALIZATION_FAILED
public static final EventCode FLEET_BINARY_DOWNLOAD_FAILED
public static final EventCode FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND
public static final EventCode FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE
public static final EventCode FLEET_VALIDATION_TIMED_OUT
public static final EventCode FLEET_ACTIVATION_FAILED
public static final EventCode FLEET_ACTIVATION_FAILED_NO_INSTANCES
public static EventCode[] values()
for (EventCode c : EventCode.values()) System.out.println(c);
public static EventCode 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 nullCopyright © 2013 Amazon Web Services, Inc. All Rights Reserved.