Package com.sas.lsaf.execution.job
Enum Class JobSubmissionStatus.DetailStatus
java.lang.Object
java.lang.Enum<JobSubmissionStatus.DetailStatus>
com.sas.lsaf.execution.job.JobSubmissionStatus.DetailStatus
- All Implemented Interfaces:
Serializable,Comparable<JobSubmissionStatus.DetailStatus>,Constable
- Enclosing class:
JobSubmissionStatus
The valid detailed status values.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe job was cancelled.The job completed successfully but there were errors when checking in the job files.The job completed with errors.The job completed with errors and there were errors when checking in the job files.The job failed.The job completed successfully.The job completed with warnings.The job completed with warnings and there were errors when checking in the job files.The detailed status is not set.The job has not started.The job tasks have completed and post-execution publishing is in progress.The job tasks are running.The job has started. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static JobSubmissionStatus.DetailStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOT_SET
The detailed status is not set. -
NOT_STARTED
The job has not started. -
STARTED
The job has started. -
RUNNING_TASKS
The job tasks are running. -
POST_EXECUTION_PUBLISHING
The job tasks have completed and post-execution publishing is in progress. -
COMPLETED_SUCCESSFUL
The job completed successfully. -
COMPLETED_ERRORS
The job completed with errors. -
COMPLETED_CHECKIN_ERROR
The job completed successfully but there were errors when checking in the job files. -
COMPLETED_ERRORS_CHECKIN_ERROR
The job completed with errors and there were errors when checking in the job files. -
COMPLETED_FAILED
The job failed. -
COMPLETED_CANCELED
The job was cancelled. -
COMPLETED_WARNINGS
The job completed with warnings. -
COMPLETED_WARNINGS_CHECKIN_ERROR
The job completed with warnings and there were errors when checking in the job files.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-