Enum Class Phase

java.lang.Object
java.lang.Enum<Phase>
com.verisign.epp.codec.fee.v1_0.Phase
All Implemented Interfaces:
Serializable, Comparable<Phase>, Constable

public enum Phase extends Enum<Phase>
Phases, which include the following possible values:
  • SUNRISE - Phase when trademark holders can submit registrations or applications with trademark information that can be validated by.
  • LANDRUSH - Post sunrise phase when non-trademark holders are allowed to register domain names with steps taken to address a large volume of initial registrations.
  • CLAIMS - Trademark claims 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 phase that is defined using a free-form attribute like the "subphase" attribute.
  • Enum Constant Details

    • SUNRISE

      public static final Phase SUNRISE
    • LANDRUSH

      public static final Phase LANDRUSH
    • CLAIMS

      public static final Phase CLAIMS
    • OPEN

      public static final Phase OPEN
    • CUSTOM

      public static final Phase CUSTOM
  • Method Details

    • values

      public static Phase[] 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 Phase 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
    • getPhase

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

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