public enum JobStatus extends Enum<JobStatus>
| Enum Constant and Description |
|---|
EXECUTE_INCREMENTAL_TASK
Job is in execute incremental task status.
|
EXECUTE_INCREMENTAL_TASK_FAILURE
Task has stopped by failing to execute incremental task.
|
EXECUTE_INVENTORY_TASK
Job is in execute inventory task status.
|
EXECUTE_INVENTORY_TASK_FAILURE
Task has stopped by failing to execute inventory task.
|
FINISHED
Job is finished.
|
PREPARING
Job is in prepare status.
|
PREPARING_FAILURE
Task has stopped by failing to prepare work.
|
RUNNING
Job is in running status.
|
| Modifier and Type | Method and Description |
|---|---|
static JobStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobStatus RUNNING
public static final JobStatus PREPARING
public static final JobStatus EXECUTE_INVENTORY_TASK
public static final JobStatus EXECUTE_INCREMENTAL_TASK
public static final JobStatus FINISHED
public static final JobStatus PREPARING_FAILURE
public static final JobStatus EXECUTE_INVENTORY_TASK_FAILURE
public static final JobStatus EXECUTE_INCREMENTAL_TASK_FAILURE
public static JobStatus[] values()
for (JobStatus c : JobStatus.values()) System.out.println(c);
public static JobStatus 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 © 2022 The Apache Software Foundation. All rights reserved.