public enum ActionCategory extends java.lang.Enum<ActionCategory>
Enum Constant and Description |
---|
DESIGNTIME |
POLICY |
Modifier and Type | Method and Description |
---|---|
static ActionCategory |
getActionCategory(java.lang.String name)
Returns the
ActionCategory enum object for a given action category string value. |
java.lang.String |
getName()
Obtains the String value for the enum object.
|
static ActionCategory |
valueOf(java.lang.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 POLICY
public static final ActionCategory DESIGNTIME
public static ActionCategory[] values()
for (ActionCategory c : ActionCategory.values()) System.out.println(c);
public static ActionCategory valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getName()
public static final ActionCategory getActionCategory(java.lang.String name)
ActionCategory
enum object for a given action category string value.
The given string value should correspond to the allowed list of Action Categories.name
- The String value for which the enum object is expectedActionCategory
enum if the given string corresponds
to an allowed value, null
otherwise