public enum PreAuthenticationDecision extends java.lang.Enum<PreAuthenticationDecision>
| Enum Constant and Description |
|---|
DECLINE |
FORCE_CHALLENGE |
NO_PREFERENCE |
TRY_EXEMPTIONS |
TRY_FRICTIONLESS |
| Modifier and Type | Method and Description |
|---|---|
static PreAuthenticationDecision |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PreAuthenticationDecision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="try_exemptions") public static final PreAuthenticationDecision TRY_EXEMPTIONS
@SerializedName(value="try_frictionless") public static final PreAuthenticationDecision TRY_FRICTIONLESS
@SerializedName(value="no_preference") public static final PreAuthenticationDecision NO_PREFERENCE
@SerializedName(value="force_challenge") public static final PreAuthenticationDecision FORCE_CHALLENGE
@SerializedName(value="decline") public static final PreAuthenticationDecision DECLINE
public static PreAuthenticationDecision[] values()
for (PreAuthenticationDecision c : PreAuthenticationDecision.values()) System.out.println(c);
public static PreAuthenticationDecision 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