public enum AuthenticationRequirer extends java.lang.Enum<AuthenticationRequirer>
| Enum Constant and Description |
|---|
CARDHOLDER
Cardholder authentication requirer.
|
MERCHANT
Merchant authentication requirer.
|
PROVIDER
Provider authentication requirer.
|
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationRequirer |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationRequirer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="PROVIDER") public static final AuthenticationRequirer PROVIDER
@SerializedName(value="MERCHANT") public static final AuthenticationRequirer MERCHANT
@SerializedName(value="CARDHOLDER") public static final AuthenticationRequirer CARDHOLDER
public static AuthenticationRequirer[] values()
for (AuthenticationRequirer c : AuthenticationRequirer.values()) System.out.println(c);
public static AuthenticationRequirer 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