Package com.adyen.model.acswebhooks
Enum AuthenticationInfo.DeviceChannelEnum
- java.lang.Object
-
- java.lang.Enum<AuthenticationInfo.DeviceChannelEnum>
-
- com.adyen.model.acswebhooks.AuthenticationInfo.DeviceChannelEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AuthenticationInfo.DeviceChannelEnum>
- Enclosing class:
- AuthenticationInfo
public static enum AuthenticationInfo.DeviceChannelEnum extends Enum<AuthenticationInfo.DeviceChannelEnum>
Indicates the type of channel interface being used to initiate the transaction. Possible values: * **app** * **browser** * **3DSRequestorInitiated** (initiated by a merchant when the cardholder is not available)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPBROWSERTHREEDSREQUESTORINITIATED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuthenticationInfo.DeviceChannelEnumfromValue(String value)StringgetValue()StringtoString()static AuthenticationInfo.DeviceChannelEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationInfo.DeviceChannelEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APP
public static final AuthenticationInfo.DeviceChannelEnum APP
-
BROWSER
public static final AuthenticationInfo.DeviceChannelEnum BROWSER
-
THREEDSREQUESTORINITIATED
public static final AuthenticationInfo.DeviceChannelEnum THREEDSREQUESTORINITIATED
-
-
Method Detail
-
values
public static AuthenticationInfo.DeviceChannelEnum[] 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 (AuthenticationInfo.DeviceChannelEnum c : AuthenticationInfo.DeviceChannelEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthenticationInfo.DeviceChannelEnum 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<AuthenticationInfo.DeviceChannelEnum>
-
fromValue
public static AuthenticationInfo.DeviceChannelEnum fromValue(String value)
-
-