public enum ApplePayPaymentDataType extends Enum<ApplePayPaymentDataType>
| Enum Constant and Description |
|---|
_UNKNOWN
Unknown values will be mapped by this enum member
|
EMV
The card was authenticated using EMV method, which is applicable for China.
|
ENUM_3DSECURE
The card was authenticated using 3D Secure (3DS) authentication scheme.
|
| Modifier and Type | Method and Description |
|---|---|
static ApplePayPaymentDataType |
constructFromString(String toConvert)
Returns the enum member associated with the given string value.
|
static ApplePayPaymentDataType |
fromString(String toConvert)
Returns the enum member associated with the given string value.
|
String |
toString()
Get string representation of this enum.
|
static List<String> |
toValue(List<ApplePayPaymentDataType> toConvert)
Convert list of ApplePayPaymentDataType values to list of string values.
|
String |
value()
Returns the string value associated with the enum member.
|
static ApplePayPaymentDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplePayPaymentDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplePayPaymentDataType ENUM_3DSECURE
public static final ApplePayPaymentDataType EMV
public static final ApplePayPaymentDataType _UNKNOWN
public static ApplePayPaymentDataType[] values()
for (ApplePayPaymentDataType c : ApplePayPaymentDataType.values()) System.out.println(c);
public static ApplePayPaymentDataType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static ApplePayPaymentDataType constructFromString(String toConvert) throws IOException
toConvert - String value to get enum member.IOException - when provided value is not mapped to any enum member.public static ApplePayPaymentDataType fromString(String toConvert)
toConvert - String value to get enum member.public String value()
public String toString()
toString in class Enum<ApplePayPaymentDataType>public static List<String> toValue(List<ApplePayPaymentDataType> toConvert)
toConvert - The list of ApplePayPaymentDataType values to convert.Copyright © 2025. All rights reserved.