Package step.repository.alm.otaclient
Enum TDAPI_TEMPLATE_PROPAGATION_STATUS
- java.lang.Object
- 
- java.lang.Enum<TDAPI_TEMPLATE_PROPAGATION_STATUS>
- 
- step.repository.alm.otaclient.TDAPI_TEMPLATE_PROPAGATION_STATUS
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<TDAPI_TEMPLATE_PROPAGATION_STATUS>
 
 public enum TDAPI_TEMPLATE_PROPAGATION_STATUS extends java.lang.Enum<TDAPI_TEMPLATE_PROPAGATION_STATUS> Possible results of template propagation analysis and enforcement. 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description TDAPI_PROPAGATION_FAILURETemplate analysis / enforcement has failed.TDAPI_PROPAGATION_SUCCESSTemplate analysis / enforcement has completed successfully.TDAPI_PROPAGATION_WARNINGSTemplate analysis / enforcement has completed with warnings.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static TDAPI_TEMPLATE_PROPAGATION_STATUSvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TDAPI_TEMPLATE_PROPAGATION_STATUS[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
TDAPI_PROPAGATION_SUCCESSpublic static final TDAPI_TEMPLATE_PROPAGATION_STATUS TDAPI_PROPAGATION_SUCCESS Template analysis / enforcement has completed successfully. The value of this constant is 0 
 - 
TDAPI_PROPAGATION_WARNINGSpublic static final TDAPI_TEMPLATE_PROPAGATION_STATUS TDAPI_PROPAGATION_WARNINGS Template analysis / enforcement has completed with warnings. The value of this constant is 1 
 - 
TDAPI_PROPAGATION_FAILUREpublic static final TDAPI_TEMPLATE_PROPAGATION_STATUS TDAPI_PROPAGATION_FAILURE Template analysis / enforcement has failed. The value of this constant is 2 
 
- 
 - 
Method Detail- 
valuespublic static TDAPI_TEMPLATE_PROPAGATION_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 (TDAPI_TEMPLATE_PROPAGATION_STATUS c : TDAPI_TEMPLATE_PROPAGATION_STATUS.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static TDAPI_TEMPLATE_PROPAGATION_STATUS valueOf(java.lang.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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-