Enum JobStatus
- All Implemented Interfaces:
Serializable,Comparable<JobStatus>,java.lang.constant.Constable
Scaling Job status.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionJob is in execute incremental task status.Task has stopped by failing to execute incremental task.Job is in execute inventory task status.Task has stopped by failing to execute inventory task.Job is finished.Job is in prepare status.Task has stopped by failing to prepare work.Job is in running status. -
Method Summary
-
Enum Constant Details
-
RUNNING
Job is in running status. -
PREPARING
Job is in prepare status. -
EXECUTE_INVENTORY_TASK
Job is in execute inventory task status. -
EXECUTE_INCREMENTAL_TASK
Job is in execute incremental task status. -
FINISHED
Job is finished. -
PREPARING_FAILURE
Task has stopped by failing to prepare work. -
EXECUTE_INVENTORY_TASK_FAILURE
Task has stopped by failing to execute inventory task. -
EXECUTE_INCREMENTAL_TASK_FAILURE
Task has stopped by failing to execute incremental task.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-