com.sas.hls.job
Enum JobStatus.DetailStatus

java.lang.Object
  extended by java.lang.Enum<JobStatus.DetailStatus>
      extended by com.sas.hls.job.JobStatus.DetailStatus
All Implemented Interfaces:
Serializable, Comparable<JobStatus.DetailStatus>
Enclosing class:
JobStatus

public static enum JobStatus.DetailStatus
extends Enum<JobStatus.DetailStatus>

Detailed status values possible.


Enum Constant Summary
COMPLETED_CANCELED
          The job was cancelled.
COMPLETED_CHECKIN_ERROR
          The job completed successfully but there were errors in checking in job files.
COMPLETED_FAILED
          The job failed.
COMPLETED_SASERRORS
           
COMPLETED_SASERRORS_CHECKIN_ERROR
          The job completed with errors AND there were errors in checking in job files.
COMPLETED_SASWARNINGS
          The job completed with warnings.
COMPLETED_SASWARNINGS_CHECKIN_ERROR
          The job completed with warnings AND there were errors in checking in job files.
COMPLETED_SUCCESSFUL
          The job completed successfully.
NOT_SET
          Detailed status is not yet set.
NOT_STARTED
          The job has not yet 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.
 
Method Summary
static JobStatus.DetailStatus valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JobStatus.DetailStatus[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NOT_SET

public static final JobStatus.DetailStatus NOT_SET
Detailed status is not yet set.


NOT_STARTED

public static final JobStatus.DetailStatus NOT_STARTED
The job has not yet started.


STARTED

public static final JobStatus.DetailStatus STARTED
The job has started.


RUNNING_TASKS

public static final JobStatus.DetailStatus RUNNING_TASKS
The job tasks are running.


POST_EXECUTION_PUBLISHING

public static final JobStatus.DetailStatus POST_EXECUTION_PUBLISHING
The job tasks have completed and post-execution publishing is in progress.


COMPLETED_SUCCESSFUL

public static final JobStatus.DetailStatus COMPLETED_SUCCESSFUL
The job completed successfully.


COMPLETED_SASERRORS

public static final JobStatus.DetailStatus COMPLETED_SASERRORS

COMPLETED_CHECKIN_ERROR

public static final JobStatus.DetailStatus COMPLETED_CHECKIN_ERROR
The job completed successfully but there were errors in checking in job files.


COMPLETED_SASERRORS_CHECKIN_ERROR

public static final JobStatus.DetailStatus COMPLETED_SASERRORS_CHECKIN_ERROR
The job completed with errors AND there were errors in checking in job files.


COMPLETED_FAILED

public static final JobStatus.DetailStatus COMPLETED_FAILED
The job failed.


COMPLETED_CANCELED

public static final JobStatus.DetailStatus COMPLETED_CANCELED
The job was cancelled.


COMPLETED_SASWARNINGS

public static final JobStatus.DetailStatus COMPLETED_SASWARNINGS
The job completed with warnings.


COMPLETED_SASWARNINGS_CHECKIN_ERROR

public static final JobStatus.DetailStatus COMPLETED_SASWARNINGS_CHECKIN_ERROR
The job completed with warnings AND there were errors in checking in job files.

Method Detail

values

public static JobStatus.DetailStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (JobStatus.DetailStatus c : JobStatus.DetailStatus.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static JobStatus.DetailStatus valueOf(String name)
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 name
NullPointerException - if the argument is null


Copyright (c) 2014, SAS Institute Inc., Cary, NC, USA