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