Enum Class EPPRealNameVerification.Role

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

public static enum EPPRealNameVerification.Role extends Enum<EPPRealNameVerification.Role>
Real Name Verification (RNV) role that include:
  • PERSON - The RNV is for a person.
  • ORG - The RNV is for an organization.
  • Enum Constant Details

  • Method Details

    • values

      public static EPPRealNameVerification.Role[] 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 EPPRealNameVerification.Role 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
    • getRole

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

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