Package com.adyen.model.payment
Enum ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum
- java.lang.Object
-
- java.lang.Enum<ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum>
-
- com.adyen.model.payment.ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum>
- Enclosing class:
- ThreeDSRequestorPriorAuthenticationInfo
public static enum ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum extends Enum<ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum>
Mechanism used by the Cardholder to previously authenticate to the 3DS Requestor. Allowed values: * **01** — Frictionless authentication occurred by ACS. * **02** — Cardholder challenge occurred by ACS. * **03** — AVS verified. * **04** — Other issuer methods.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnumfromValue(String value)StringgetValue()StringtoString()static ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_01
public static final ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum _01
-
_02
public static final ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum _02
-
_03
public static final ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum _03
-
_04
public static final ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum _04
-
-
Method Detail
-
values
public static ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum[] 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 (ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum c : ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum 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<ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum>
-
fromValue
public static ThreeDSRequestorPriorAuthenticationInfo.ThreeDSReqPriorAuthMethodEnum fromValue(String value)
-
-