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