public enum WorkItemType extends Enum<WorkItemType>
| Enum Constant and Description |
|---|
HUMAN_TASK |
SIGNAL |
TASK |
TIMER |
| Modifier and Type | Method and Description |
|---|---|
static WorkItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkItemType SIGNAL
public static final WorkItemType TIMER
public static final WorkItemType TASK
public static final WorkItemType HUMAN_TASK
public static WorkItemType[] values()
for (WorkItemType c : WorkItemType.values()) System.out.println(c);
public static WorkItemType 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 nullCopyright © 2018. All rights reserved.