public static enum Action.ActionCase extends java.lang.Enum<Action.ActionCase> implements Internal.EnumLite
Enum Constant and Description |
---|
ACTION_NOT_SET |
PUB_SUB |
SAVE_FINDINGS |
Modifier and Type | Method and Description |
---|---|
static Action.ActionCase |
forNumber(int value) |
int |
getNumber() |
static Action.ActionCase |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static Action.ActionCase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Action.ActionCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Action.ActionCase SAVE_FINDINGS
public static final Action.ActionCase PUB_SUB
public static final Action.ActionCase ACTION_NOT_SET
public static Action.ActionCase[] values()
for (Action.ActionCase c : Action.ActionCase.values()) System.out.println(c);
public static Action.ActionCase 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 null@Deprecated public static Action.ActionCase valueOf(int value)
forNumber(int)
instead.public static Action.ActionCase forNumber(int value)
public int getNumber()
getNumber
in interface Internal.EnumLite