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