public enum TDAPI_TEMPLATE_PROPAGATION_STATUS extends Enum<TDAPI_TEMPLATE_PROPAGATION_STATUS>
Possible results of template propagation analysis and enforcement.
Enum Constant and Description |
---|
TDAPI_PROPAGATION_FAILURE
Template analysis / enforcement has failed.
|
TDAPI_PROPAGATION_SUCCESS
Template analysis / enforcement has completed successfully.
|
TDAPI_PROPAGATION_WARNINGS
Template analysis / enforcement has completed with warnings.
|
Modifier and Type | Method and Description |
---|---|
static TDAPI_TEMPLATE_PROPAGATION_STATUS |
valueOf(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.
|
public static final TDAPI_TEMPLATE_PROPAGATION_STATUS TDAPI_PROPAGATION_SUCCESS
Template analysis / enforcement has completed successfully.
The value of this constant is 0
public static final TDAPI_TEMPLATE_PROPAGATION_STATUS TDAPI_PROPAGATION_WARNINGS
Template analysis / enforcement has completed with warnings.
The value of this constant is 1
public static final TDAPI_TEMPLATE_PROPAGATION_STATUS TDAPI_PROPAGATION_FAILURE
Template analysis / enforcement has failed.
The value of this constant is 2
public static TDAPI_TEMPLATE_PROPAGATION_STATUS[] values()
for (TDAPI_TEMPLATE_PROPAGATION_STATUS c : TDAPI_TEMPLATE_PROPAGATION_STATUS.values()) System.out.println(c);
public static TDAPI_TEMPLATE_PROPAGATION_STATUS valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.