public static enum SetValueAction.Scope extends java.lang.Enum<SetValueAction.Scope>
Enum Constant and Description |
---|
PARENT_PROCESS_FLOW
Parent process Flow.
|
PROCESS_FLOW
Process Flow.
|
TASK
Task.
|
Modifier and Type | Method and Description |
---|---|
static SetValueAction.Scope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SetValueAction.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SetValueAction.Scope TASK
public static final SetValueAction.Scope PROCESS_FLOW
public static final SetValueAction.Scope PARENT_PROCESS_FLOW
public static SetValueAction.Scope[] values()
for (SetValueAction.Scope c : SetValueAction.Scope.values()) System.out.println(c);
public static SetValueAction.Scope 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