public enum CaseActionType extends Enum<CaseActionType>
| Enum Constant and Description |
|---|
AD_HOC_TASK |
DYNAMIC_SUBPROCESS_TASK |
DYNAMIC_USER_TASK |
| Modifier and Type | Method and Description |
|---|---|
static CaseActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CaseActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaseActionType AD_HOC_TASK
public static final CaseActionType DYNAMIC_USER_TASK
public static final CaseActionType DYNAMIC_SUBPROCESS_TASK
public static CaseActionType[] values()
for (CaseActionType c : CaseActionType.values()) System.out.println(c);
public static CaseActionType 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 © 2001–2021 JBoss by Red Hat. All rights reserved.