Package com.adyen.model.payment
Enum ThreeDSecureData.AuthenticationResponseEnum
- java.lang.Object
-
- java.lang.Enum<ThreeDSecureData.AuthenticationResponseEnum>
-
- com.adyen.model.payment.ThreeDSecureData.AuthenticationResponseEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ThreeDSecureData.AuthenticationResponseEnum>
- Enclosing class:
- ThreeDSecureData
public static enum ThreeDSecureData.AuthenticationResponseEnum extends Enum<ThreeDSecureData.AuthenticationResponseEnum>
In 3D Secure 1, the authentication response if the shopper was redirected. In 3D Secure 2, this is the `transStatus` from the challenge result. If the transaction was frictionless, omit this parameter.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ThreeDSecureData.AuthenticationResponseEnumfromValue(String value)StringgetValue()StringtoString()static ThreeDSecureData.AuthenticationResponseEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ThreeDSecureData.AuthenticationResponseEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Y
public static final ThreeDSecureData.AuthenticationResponseEnum Y
-
N
public static final ThreeDSecureData.AuthenticationResponseEnum N
-
U
public static final ThreeDSecureData.AuthenticationResponseEnum U
-
A
public static final ThreeDSecureData.AuthenticationResponseEnum A
-
-
Method Detail
-
values
public static ThreeDSecureData.AuthenticationResponseEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ThreeDSecureData.AuthenticationResponseEnum c : ThreeDSecureData.AuthenticationResponseEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThreeDSecureData.AuthenticationResponseEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ThreeDSecureData.AuthenticationResponseEnum>
-
fromValue
public static ThreeDSecureData.AuthenticationResponseEnum fromValue(String value)
-
-