Enum EventCode
- java.lang.Object
-
- java.lang.Enum<EventCode>
-
- com.amazonaws.services.gamelift.model.EventCode
-
- All Implemented Interfaces:
Serializable
,Comparable<EventCode>
public enum EventCode extends Enum<EventCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
GENERIC_EVENT
public static final EventCode GENERIC_EVENT
-
FLEET_CREATED
public static final EventCode FLEET_CREATED
-
FLEET_DELETED
public static final EventCode FLEET_DELETED
-
FLEET_SCALING_EVENT
public static final EventCode FLEET_SCALING_EVENT
-
FLEET_STATE_DOWNLOADING
public static final EventCode FLEET_STATE_DOWNLOADING
-
FLEET_STATE_VALIDATING
public static final EventCode FLEET_STATE_VALIDATING
-
FLEET_STATE_BUILDING
public static final EventCode FLEET_STATE_BUILDING
-
FLEET_STATE_ACTIVATING
public static final EventCode FLEET_STATE_ACTIVATING
-
FLEET_STATE_ACTIVE
public static final EventCode FLEET_STATE_ACTIVE
-
FLEET_STATE_ERROR
public static final EventCode FLEET_STATE_ERROR
-
FLEET_INITIALIZATION_FAILED
public static final EventCode FLEET_INITIALIZATION_FAILED
-
FLEET_BINARY_DOWNLOAD_FAILED
public static final EventCode FLEET_BINARY_DOWNLOAD_FAILED
-
FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND
public static final EventCode FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND
-
FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE
public static final EventCode FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE
-
FLEET_VALIDATION_TIMED_OUT
public static final EventCode FLEET_VALIDATION_TIMED_OUT
-
FLEET_ACTIVATION_FAILED
public static final EventCode FLEET_ACTIVATION_FAILED
-
FLEET_ACTIVATION_FAILED_NO_INSTANCES
public static final EventCode FLEET_ACTIVATION_FAILED_NO_INSTANCES
-
FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED
public static final EventCode FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED
-
-
Method Detail
-
values
public static EventCode[] 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 (EventCode c : EventCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventCode 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 nameNullPointerException
- if the argument is null
-
-