public static enum JobData.State extends Enum<JobData.State>
Enum Constant and Description |
---|
DISABLED
Job state for indicating that the job is in pause state.
|
DRAFT
Job state for draft jobs (not scheduled).
|
NOT_RUNNING
Job state for indicating that the job not currently being executed.
|
RUNNING
Job state for indicating that the job is currently executing.
|
WAITING
Job state for indicating that the job is waiting for its
dependencies to be satisfied
|
Modifier and Type | Method and Description |
---|---|
static JobData.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobData.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobData.State NOT_RUNNING
public static final JobData.State RUNNING
public static final JobData.State DISABLED
public static final JobData.State WAITING
public static final JobData.State DRAFT
public static JobData.State[] values()
for (JobData.State c : JobData.State.values()) System.out.println(c);
public static JobData.State 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 © 2021 Denodo Technologies. All rights reserved.