Enum Class EPPLaunchPolicyPhase.Mode

java.lang.Object
java.lang.Enum<EPPLaunchPolicyPhase.Mode>
com.verisign.epp.codec.launchpolicy.v01.EPPLaunchPolicyPhase.Mode
All Implemented Interfaces:
Serializable, Comparable<EPPLaunchPolicyPhase.Mode>, Constable
Enclosing class:
EPPLaunchPolicyPhase

public static enum EPPLaunchPolicyPhase.Mode extends Enum<EPPLaunchPolicyPhase.Mode>
Mode defines how the phase operates, which include the following possible values:
  • fcfs - In this mode, each domain name is immediately created and there is no use of an application identifier.
  • pendingRegistration - In this mode, the domain name is created with the "pendingCreate" status with no use of an application identifier.
  • pendingApplication - In this mode, the domain name, referred to as a domain application, is created in the "pendingCreate" status with the server returning an application identifier in the create response for the client to use in subsequent commands (info, update, delete). When a domain application is allocated, it will become a domain without the use of an application identifier.
  • Enum Constant Details

  • Method Details

    • values

      public static EPPLaunchPolicyPhase.Mode[] 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

      public static EPPLaunchPolicyPhase.Mode valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getMode

      public static EPPLaunchPolicyPhase.Mode getMode(String aString)
      Get the mode enumerated value given the matching string.
      Parameters:
      aString - Mode enumerated string to convert to an enumerated Mode instance.
      Returns:
      Enumerated Mode value matching the String.
      Throws:
      InvalidParameterException - If aString does not match an enumerated Mode string value.
    • toString

      public String toString()
      Convert the enumerated Mode value to a String.
      Overrides:
      toString in class Enum<EPPLaunchPolicyPhase.Mode>