public static enum JobSubmissionStatus.DetailStatus extends Enum<JobSubmissionStatus.DetailStatus>
Enum Constant and Description |
---|
COMPLETED_CANCELED
The job was cancelled.
|
COMPLETED_CHECKIN_ERROR
The job completed successfully but there were errors when checking in the job files.
|
COMPLETED_ERRORS
The job completed with errors.
|
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_SUCCESSFUL
The job completed successfully.
|
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.
|
NOT_SET
The detailed status is not set.
|
NOT_STARTED
The job has not started.
|
POST_EXECUTION_PUBLISHING
The job tasks have completed and post-execution publishing is in progress.
|
RUNNING_TASKS
The job tasks are running.
|
STARTED
The job has started.
|
Modifier and Type | Method and Description |
---|---|
static JobSubmissionStatus.DetailStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobSubmissionStatus.DetailStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobSubmissionStatus.DetailStatus NOT_SET
public static final JobSubmissionStatus.DetailStatus NOT_STARTED
public static final JobSubmissionStatus.DetailStatus STARTED
public static final JobSubmissionStatus.DetailStatus RUNNING_TASKS
public static final JobSubmissionStatus.DetailStatus POST_EXECUTION_PUBLISHING
public static final JobSubmissionStatus.DetailStatus COMPLETED_SUCCESSFUL
public static final JobSubmissionStatus.DetailStatus COMPLETED_ERRORS
public static final JobSubmissionStatus.DetailStatus COMPLETED_CHECKIN_ERROR
public static final JobSubmissionStatus.DetailStatus COMPLETED_ERRORS_CHECKIN_ERROR
public static final JobSubmissionStatus.DetailStatus COMPLETED_FAILED
public static final JobSubmissionStatus.DetailStatus COMPLETED_CANCELED
public static final JobSubmissionStatus.DetailStatus COMPLETED_WARNINGS
public static final JobSubmissionStatus.DetailStatus COMPLETED_WARNINGS_CHECKIN_ERROR
public static JobSubmissionStatus.DetailStatus[] values()
for (JobSubmissionStatus.DetailStatus c : JobSubmissionStatus.DetailStatus.values()) System.out.println(c);
public static JobSubmissionStatus.DetailStatus 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 null<i>Copyright (c) 2021, SAS Institute Inc., Cary, NC, USA</i>