Enum Class RegistrarBase.State

java.lang.Object
java.lang.Enum<RegistrarBase.State>
google.registry.model.registrar.RegistrarBase.State
All Implemented Interfaces:
Serializable, Comparable<RegistrarBase.State>, Constable
Enclosing class:
RegistrarBase

public static enum RegistrarBase.State extends Enum<RegistrarBase.State>
Represents the state of a persisted registrar entity.
  • Enum Constant Details

    • PENDING

      public static final RegistrarBase.State PENDING
      This registrar is provisioned but not yet active, and cannot log in.
    • ACTIVE

      public static final RegistrarBase.State ACTIVE
      This is an active registrar account which is allowed to provision and modify domains.
    • SUSPENDED

      public static final RegistrarBase.State SUSPENDED
      This is a suspended account which is disallowed from provisioning new domains, but can otherwise still perform other operations to continue operations.
    • DISABLED

      public static final RegistrarBase.State DISABLED
      This registrar is completely disabled and cannot perform any EPP actions whatsoever, nor log in to the registrar console.
  • Method Details

    • values

      public static RegistrarBase.State[] 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 RegistrarBase.State 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