Enum Class EPPNameVerificationStatus

java.lang.Object
java.lang.Enum<EPPNameVerificationStatus>
com.verisign.epp.codec.nv.EPPNameVerificationStatus
All Implemented Interfaces:
Serializable, Comparable<EPPNameVerificationStatus>, Constable

public enum EPPNameVerificationStatus extends Enum<EPPNameVerificationStatus>
Name Verification (NV) statuses, which include the following possible values:
  • PENDING_COMPLIANT - The object verification is not complete and is pending.
  • COMPLIANT - The object is in compliance with the policy.
  • NON_COMPLIANT - The object is not in compliance with the policy.
  • Enum Constant Details

  • Method Details

    • values

      public static EPPNameVerificationStatus[] 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 EPPNameVerificationStatus 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
    • getStatus

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

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