Package com.adyen.model.checkout
Enum ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum
- java.lang.Object
-
- java.lang.Enum<ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum>
-
- com.adyen.model.checkout.ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum>
- Enclosing class:
- ThreeDSRequestorAuthenticationInfo
public static enum ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum extends Enum<ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum>
Mechanism used by the Cardholder to authenticate to the 3DS Requestor. Allowed values: * **01** — No 3DS Requestor authentication occurred (for example, cardholder “logged in” as guest). * **02** — Login to the cardholder account at the 3DS Requestor system using 3DS Requestor’s own credentials. * **03** — Login to the cardholder account at the 3DS Requestor system using federated ID. * **04** — Login to the cardholder account at the 3DS Requestor system using issuer credentials. * **05** — Login to the cardholder account at the 3DS Requestor system using third-party authentication. * **06** — Login to the cardholder account at the 3DS Requestor system using FIDO Authenticator.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnumfromValue(String value)StringgetValue()StringtoString()static ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_01
public static final ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum _01
-
_02
public static final ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum _02
-
_03
public static final ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum _03
-
_04
public static final ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum _04
-
_05
public static final ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum _05
-
_06
public static final ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum _06
-
-
Method Detail
-
values
public static ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum[] 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 (ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum c : ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum 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<ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum>
-
fromValue
public static ThreeDSRequestorAuthenticationInfo.ThreeDSReqAuthMethodEnum fromValue(String value)
-
-