Enum TDAPI_TEMPLATE_PROPAGATION_STATUS
- java.lang.Object
-
- java.lang.Enum<TDAPI_TEMPLATE_PROPAGATION_STATUS>
-
- step.repository.alm.v16.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 Summary
Enum Constants Enum Constant Description TDAPI_PROPAGATION_FAILURE
Template analysis / enforcement has failed.TDAPI_PROPAGATION_FAILURE_ENCODING_MISMATCH
Template analysis / enforcement has failed.TDAPI_PROPAGATION_FAILURE_EXTENSION_MISMATCH
Template analysis / enforcement has failed.TDAPI_PROPAGATION_FAILURE_ON_ANALYSIS
Template analysis / enforcement has failed on analysis customizationTDAPI_PROPAGATION_FAILURE_VERSION_MISMATCH
Template analysis / enforcement has failed.TDAPI_PROPAGATION_SUCCESS
Template analysis / enforcement has completed successfully.TDAPI_PROPAGATION_WARNINGS
Template analysis / enforcement has completed with warnings.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TDAPI_TEMPLATE_PROPAGATION_STATUS
valueOf(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_SUCCESS
public static final TDAPI_TEMPLATE_PROPAGATION_STATUS TDAPI_PROPAGATION_SUCCESS
Template analysis / enforcement has completed successfully.
The value of this constant is 0
-
TDAPI_PROPAGATION_WARNINGS
public 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_FAILURE
public static final TDAPI_TEMPLATE_PROPAGATION_STATUS TDAPI_PROPAGATION_FAILURE
Template analysis / enforcement has failed.
The value of this constant is 2
-
TDAPI_PROPAGATION_FAILURE_VERSION_MISMATCH
public static final TDAPI_TEMPLATE_PROPAGATION_STATUS TDAPI_PROPAGATION_FAILURE_VERSION_MISMATCH
Template analysis / enforcement has failed. Version mismatch.
The value of this constant is 3
-
TDAPI_PROPAGATION_FAILURE_ENCODING_MISMATCH
public static final TDAPI_TEMPLATE_PROPAGATION_STATUS TDAPI_PROPAGATION_FAILURE_ENCODING_MISMATCH
Template analysis / enforcement has failed. Encoding mismatch.
The value of this constant is 4
-
TDAPI_PROPAGATION_FAILURE_EXTENSION_MISMATCH
public static final TDAPI_TEMPLATE_PROPAGATION_STATUS TDAPI_PROPAGATION_FAILURE_EXTENSION_MISMATCH
Template analysis / enforcement has failed. Extension mismatch.
The value of this constant is 5
-
TDAPI_PROPAGATION_FAILURE_ON_ANALYSIS
public static final TDAPI_TEMPLATE_PROPAGATION_STATUS TDAPI_PROPAGATION_FAILURE_ON_ANALYSIS
Template analysis / enforcement has failed on analysis customization
The value of this constant is 6
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 namejava.lang.NullPointerException
- if the argument is null
-
-