Package com.aq.aqconnect
Enum AQConstants.TEST_JOB_STATUS
- java.lang.Object
- 
- java.lang.Enum<AQConstants.TEST_JOB_STATUS>
- 
- com.aq.aqconnect.AQConstants.TEST_JOB_STATUS
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AQConstants.TEST_JOB_STATUS>
 - Enclosing class:
- AQConstants
 
 public static enum AQConstants.TEST_JOB_STATUS extends Enum<AQConstants.TEST_JOB_STATUS> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ABORTEDCOMPLETEDCONTINUOUS_INTEGRATIONERRORFAILEDIN_PROGRESSNOT_APPLICABLERECURRINGSCHEDULED
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetStatus()static AQConstants.TEST_JOB_STATUSvalueOf(String name)Returns the enum constant of this type with the specified name.static AQConstants.TEST_JOB_STATUS[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NOT_APPLICABLEpublic static final AQConstants.TEST_JOB_STATUS NOT_APPLICABLE 
 - 
SCHEDULEDpublic static final AQConstants.TEST_JOB_STATUS SCHEDULED 
 - 
IN_PROGRESSpublic static final AQConstants.TEST_JOB_STATUS IN_PROGRESS 
 - 
COMPLETEDpublic static final AQConstants.TEST_JOB_STATUS COMPLETED 
 - 
ABORTEDpublic static final AQConstants.TEST_JOB_STATUS ABORTED 
 - 
FAILEDpublic static final AQConstants.TEST_JOB_STATUS FAILED 
 - 
RECURRINGpublic static final AQConstants.TEST_JOB_STATUS RECURRING 
 - 
ERRORpublic static final AQConstants.TEST_JOB_STATUS ERROR 
 - 
CONTINUOUS_INTEGRATIONpublic static final AQConstants.TEST_JOB_STATUS CONTINUOUS_INTEGRATION 
 
- 
 - 
Method Detail- 
valuespublic static AQConstants.TEST_JOB_STATUS[] 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 (AQConstants.TEST_JOB_STATUS c : AQConstants.TEST_JOB_STATUS.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AQConstants.TEST_JOB_STATUS 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
 
 - 
getStatuspublic String getStatus() 
 
- 
 
-