The job is about to enter RUNNING. This is a somewhat delicate phase
since there is no way to know whether the jvm thread executing the
job has already been created or not. Once the thread is up, it will
trigger the transition to RUNNING, right before executing the actual
job code.
If the job is aborted before that, it will transit to
STARTING_ABORTING.
The job is currently executing. Any uncauhgt exception will put it
into state FAILED. If it completes normally, it will move to
SUCCEEDED. Aborting it will put it into state ABORTING.
The job enteres this stage when it is aborted during STARTING. No
attempt will be made to stop the creation and execution of the
job. Once the thread is up, it will trigger the transition to
ABORTING, right before executing the actual job code.
The cancellation of the job has been requested, but the
implementation has not yet acted upon this request. The state will
eventually change to either ABORTED or FAILED once the executing thread exits.
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.