Enum Class EPPVerificationCodeProfile.Status
java.lang.Object
java.lang.Enum<EPPVerificationCodeProfile.Status>
com.verisign.epp.codec.verificationcode.EPPVerificationCodeProfile.Status
- All Implemented Interfaces:
Serializable,Comparable<EPPVerificationCodeProfile.Status>,Constable
- Enclosing class:
EPPVerificationCodeProfile
public static enum EPPVerificationCodeProfile.Status
extends Enum<EPPVerificationCodeProfile.Status>
Verification statuses that include:
NOT_APPLICABLE- The profile status is not applicable to the client based on the assigned verification profiles or the profile specified.NON_COMPLIANT- The object is non-compliant according to the verification profile.PENDING_COMPLIANCE- The object is not in compliance with the verification profile, but has a grace period to set the required set of verification codes, as reflected by the due date of the verification code type.COMPLIANTThe object is compliant with the verification profile.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionGet the status enumerated value given the matching string.toString()Convert the enumeratedStatusvalue to aString.Returns the enum constant of this class with the specified name.static EPPVerificationCodeProfile.Status[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOT_APPLICABLE
-
NON_COMPLIANT
-
PENDING_COMPLIANCE
-
COMPLIANT
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
getStatus
Get the status enumerated value given the matching string.- Parameters:
aString-Statusenumerated string to convert to an enumeratedStatusinstance.- Returns:
- Enumerated
Statusvalue matching theString. - Throws:
InvalidParameterException- IfaStringdoes not match an enumeratedStatusstring value.
-
toString
Convert the enumeratedStatusvalue to aString.- Overrides:
toStringin classEnum<EPPVerificationCodeProfile.Status>
-