Package com.aq.aqconnect
Enum AQConstants.TEST_CASE_STATUS
- java.lang.Object
- 
- java.lang.Enum<AQConstants.TEST_CASE_STATUS>
- 
- com.aq.aqconnect.AQConstants.TEST_CASE_STATUS
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AQConstants.TEST_CASE_STATUS>
 - Enclosing class:
- AQConstants
 
 public static enum AQConstants.TEST_CASE_STATUS extends Enum<AQConstants.TEST_CASE_STATUS> 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetStatus()static AQConstants.TEST_CASE_STATUSvalueOf(String name)Returns the enum constant of this type with the specified name.static AQConstants.TEST_CASE_STATUS[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
PASSpublic static final AQConstants.TEST_CASE_STATUS PASS 
 - 
FAILpublic static final AQConstants.TEST_CASE_STATUS FAIL 
 - 
NOT_RUNpublic static final AQConstants.TEST_CASE_STATUS NOT_RUN 
 - 
RUNNINGpublic static final AQConstants.TEST_CASE_STATUS RUNNING 
 - 
INFOpublic static final AQConstants.TEST_CASE_STATUS INFO 
 - 
FATALpublic static final AQConstants.TEST_CASE_STATUS FATAL 
 - 
WARNpublic static final AQConstants.TEST_CASE_STATUS WARN 
 - 
ALLpublic static final AQConstants.TEST_CASE_STATUS ALL 
 
- 
 - 
Method Detail- 
valuespublic static AQConstants.TEST_CASE_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_CASE_STATUS c : AQConstants.TEST_CASE_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_CASE_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() 
 
- 
 
-