public static enum TaskletStatus.Scope extends java.lang.Enum<TaskletStatus.Scope>
APP_SCOPE
are cookies that are shared between all jobs runs and during job editing. These cookies
can be set/get by Tasklet manual editing or during a job run.
RUN_SCOPE
are cookies that are available only while the job is running and between retries of a job run.
Modifier and Type | Method and Description |
---|---|
static TaskletStatus.Scope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TaskletStatus.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskletStatus.Scope APP_SCOPE
public static final TaskletStatus.Scope RUN_SCOPE
public static TaskletStatus.Scope[] values()
for (TaskletStatus.Scope c : TaskletStatus.Scope.values()) System.out.println(c);
public static TaskletStatus.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 nullCopyright © Grand Logic, Inc. All Rights Reserved.