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