public static enum WorkflowLog.Type extends java.lang.Enum<WorkflowLog.Type>
| Enum Constant and Description |
|---|
NODE_ENTRY |
TASK_ASSIGN |
TASK_COMPLETION |
TASK_UPDATE |
TRANSITION |
| Modifier and Type | Method and Description |
|---|---|
static WorkflowLog.Type |
create(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static WorkflowLog.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowLog.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowLog.Type NODE_ENTRY
public static final WorkflowLog.Type TASK_ASSIGN
public static final WorkflowLog.Type TASK_COMPLETION
public static final WorkflowLog.Type TASK_UPDATE
public static final WorkflowLog.Type TRANSITION
public static WorkflowLog.Type[] values()
for (WorkflowLog.Type c : WorkflowLog.Type.values()) System.out.println(c);
public static WorkflowLog.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 nullpublic static WorkflowLog.Type create(java.lang.String value)
public java.lang.String getValue()
public java.lang.String toString()
toString in class java.lang.Enum<WorkflowLog.Type>