Package com.verisign.epp.codec.nv
Enum EPPRealNameVerification.Role
- java.lang.Object
-
- java.lang.Enum<EPPRealNameVerification.Role>
-
- com.verisign.epp.codec.nv.EPPRealNameVerification.Role
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EPPRealNameVerification.Role>
- Enclosing class:
- EPPRealNameVerification
public static enum EPPRealNameVerification.Role extends java.lang.Enum<EPPRealNameVerification.Role>
Real Name Verification (RNV) role that include:
PERSON
- The RNV is for a person.ORG
- The RNV is for an organization.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EPPRealNameVerification.Role
getRole(java.lang.String aString)
Get the role enumerated value given the matching string.java.lang.String
toString()
Convert the enumeratedRole
value to aString
.static EPPRealNameVerification.Role
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EPPRealNameVerification.Role[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PERSON
public static final EPPRealNameVerification.Role PERSON
-
ORG
public static final EPPRealNameVerification.Role ORG
-
-
Method Detail
-
values
public static EPPRealNameVerification.Role[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EPPRealNameVerification.Role c : EPPRealNameVerification.Role.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EPPRealNameVerification.Role valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getRole
public static EPPRealNameVerification.Role getRole(java.lang.String aString)
Get the role enumerated value given the matching string.- Parameters:
aString
-Role
enumerated string to convert to an enumeratedRole
instance.- Returns:
- Enumerated
Role
value matching theString
. - Throws:
java.security.InvalidParameterException
- IfaString
does not match an enumeratedRole
string value.
-
toString
public java.lang.String toString()
Convert the enumeratedRole
value to aString
.- Overrides:
toString
in classjava.lang.Enum<EPPRealNameVerification.Role>
-
-