Enum Class EPPLaunchPolicyPhaseStatus.Status
java.lang.Object
java.lang.Enum<EPPLaunchPolicyPhaseStatus.Status>
com.verisign.epp.codec.launchpolicy.v01.EPPLaunchPolicyPhaseStatus.Status
- All Implemented Interfaces:
Serializable,Cloneable,Comparable<EPPLaunchPolicyPhaseStatus.Status>,Constable
- Enclosing class:
EPPLaunchPolicyPhaseStatus
public static enum EPPLaunchPolicyPhaseStatus.Status
extends Enum<EPPLaunchPolicyPhaseStatus.Status>
implements Serializable, Cloneable
Possible launch phase statuses used by the
statuses attribute.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe object corresponding to the application or registration has been provisioned.A custom status that is defined using the "name" attribute.The application or registration does not validate according to registry rules.The allocation of the application or registration is pending based on the results of some out- of-band process (for example, an auction).The initial state of a newly-created application or registration object.The application or registration object was not provisioned.The application or registration meets relevant registry rules. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static EPPLaunchPolicyPhaseStatus.Status[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
pendingValidation
The initial state of a newly-created application or registration object. -
validated
The application or registration meets relevant registry rules. -
invalid
The application or registration does not validate according to registry rules. -
pendingAllocation
The allocation of the application or registration is pending based on the results of some out- of-band process (for example, an auction). -
allocated
The object corresponding to the application or registration has been provisioned. -
rejected
The application or registration object was not provisioned. -
custom
A custom status that is defined using the "name" attribute.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-