Enum Class Registrar.State

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

public static enum Registrar.State extends Enum<Registrar.State>
Represents the state of a persisted registrar entity.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    This is an active registrar account which is allowed to provision and modify domains.
    This registrar is completely disabled and cannot perform any EPP actions whatsoever, nor log in to the registrar console.
    This registrar is provisioned but not yet active, and cannot log in.
    This is a suspended account which is disallowed from provisioning new domains, but can otherwise still perform other operations to continue operations.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • PENDING

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

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

      public static final Registrar.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 Registrar.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 Registrar.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 Registrar.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