public enum ThreeDSEnrollmentStatus extends java.lang.Enum<ThreeDSEnrollmentStatus>
| Enum Constant and Description |
|---|
CUSTOMER_NOT_ENROLLED |
ISSUER_ENROLLED |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static ThreeDSEnrollmentStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ThreeDSEnrollmentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Y") public static final ThreeDSEnrollmentStatus ISSUER_ENROLLED
@SerializedName(value="N") public static final ThreeDSEnrollmentStatus CUSTOMER_NOT_ENROLLED
@SerializedName(value="U") public static final ThreeDSEnrollmentStatus UNKNOWN
public static ThreeDSEnrollmentStatus[] values()
for (ThreeDSEnrollmentStatus c : ThreeDSEnrollmentStatus.values()) System.out.println(c);
public static ThreeDSEnrollmentStatus 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