Enum Class EPPLaunchPolicyPhase.Phase
java.lang.Object
java.lang.Enum<EPPLaunchPolicyPhase.Phase>
com.verisign.epp.codec.launchpolicy.v01.EPPLaunchPolicyPhase.Phase
- All Implemented Interfaces:
Serializable,Comparable<EPPLaunchPolicyPhase.Phase>,Constable
- Enclosing class:
EPPLaunchPolicyPhase
Phase defines the type of phase, which include the following
possible values:preDelegation- Phase when pre-delegation testing is done.preLaunch- Phase prior to the sunrise phase where no writable operations will be allowed.sunrise- Phase when trademark holders can submit registration applications with trademark information that can be validated by the server.landrush- Post-sunrise phase when non-trademark holders are allowed to register domain names.claims- Trademark claims phase as defined by Trademark Clearinghouse model of displaying a claims notice to clients for domain names that match trademarks.open- Post-launch phase that is also referred to as "steady state". Servers MAY require additional trademark protection with this phase.custom- Custom launch phase that is defined using the "name" attribute.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic EPPLaunchPolicyPhase.PhaseGet the phase enumerated value given the matching string.toString()Convert the enumeratedPhasevalue to aString.static EPPLaunchPolicyPhase.PhaseReturns the enum constant of this class with the specified name.static EPPLaunchPolicyPhase.Phase[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
preDelegation
-
preLaunch
-
sunrise
-
landrush
-
claims
-
open
-
custom
-
-
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
-
getPhase
Get the phase enumerated value given the matching string.- Parameters:
aString-Phaseenumerated string to convert to an enumeratedPhaseinstance.- Returns:
- Enumerated
Phasevalue matching theString. - Throws:
InvalidParameterException- IfaStringdoes not match an enumeratedPhasestring value.
-
toString
Convert the enumeratedPhasevalue to aString.- Overrides:
toStringin classEnum<EPPLaunchPolicyPhase.Phase>
-