public enum TaskInputVariablesReadMode extends Enum<TaskInputVariablesReadMode>
| Enum Constant and Description |
|---|
DONT_READ
Don't load the task variables.
|
READ_FOR_ACTIVE_TASKS_WITH_NO_PLANNING_ENTITY
Optimization, read the task variables only for the tasks that aren't in a sink status and hasn't an associated planning task.
|
READ_FOR_ALL
Load the task variables for all the returned tasks.
|
| Modifier and Type | Method and Description |
|---|---|
static TaskInputVariablesReadMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskInputVariablesReadMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskInputVariablesReadMode DONT_READ
public static final TaskInputVariablesReadMode READ_FOR_ALL
public static final TaskInputVariablesReadMode READ_FOR_ACTIVE_TASKS_WITH_NO_PLANNING_ENTITY
public static TaskInputVariablesReadMode[] values()
for (TaskInputVariablesReadMode c : TaskInputVariablesReadMode.values()) System.out.println(c);
public static TaskInputVariablesReadMode 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–2020 JBoss by Red Hat. All rights reserved.