public enum VerifyIdentityResponseCode extends java.lang.Enum<VerifyIdentityResponseCode>
| Enum Constant and Description |
|---|
FAIL |
INVALID_INPUT |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static VerifyIdentityResponseCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerifyIdentityResponseCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerifyIdentityResponseCode SUCCESS
public static final VerifyIdentityResponseCode INVALID_INPUT
public static final VerifyIdentityResponseCode FAIL
public static VerifyIdentityResponseCode[] values()
for (VerifyIdentityResponseCode c : VerifyIdentityResponseCode.values()) System.out.println(c);
public static VerifyIdentityResponseCode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null