public static enum ActionDelay.Action extends java.lang.Enum<ActionDelay.Action>
Enum Constant and Description |
---|
CLEAN_CLIENT |
DO_NOTHING |
REBOOT |
SEND_REPORT |
VERIFY_CLIENT |
Modifier and Type | Method and Description |
---|---|
static ActionDelay.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActionDelay.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionDelay.Action DO_NOTHING
public static final ActionDelay.Action SEND_REPORT
public static final ActionDelay.Action REBOOT
public static final ActionDelay.Action VERIFY_CLIENT
public static final ActionDelay.Action CLEAN_CLIENT
public static ActionDelay.Action[] values()
for (ActionDelay.Action c : ActionDelay.Action.values()) System.out.println(c);
public static ActionDelay.Action 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