Enum ExecStatus
- All Implemented Interfaces:
Serializable, Comparable<ExecStatus>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe job is ready, it can be running or terminated.The job is running, it can be stopped or terminated.The job is stopped, it can be running or terminated.The job is terminated. -
Method Summary
Modifier and TypeMethodDescriptionstatic ExecStatusReturns the enum constant of this type with the specified name.static ExecStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
READY
The job is ready, it can be running or terminated. -
RUNNING
The job is running, it can be stopped or terminated. -
STOPPED
The job is stopped, it can be running or terminated. -
TERMINATED
The job is terminated.
-
-
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
-