public enum WorkType extends Enum<WorkType>
| Enum Constant and Description |
|---|
ABORT_WORKFLOW |
COMPLETE_WORK_ITEM |
EXECUTE_TASK |
START_WORKFLOW |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
static WorkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkType START_WORKFLOW
public static final WorkType ABORT_WORKFLOW
public static final WorkType COMPLETE_WORK_ITEM
public static final WorkType EXECUTE_TASK
public static WorkType[] values()
for (WorkType c : WorkType.values()) System.out.println(c);
public static WorkType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getDescription()
Copyright © 2018. All rights reserved.