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