public enum OrdersCardVerificationMethod extends Enum<OrdersCardVerificationMethod>
| Enum Constant and Description |
|---|
_UNKNOWN
Unknown values will be mapped by this enum member
|
AVS_CVV
Places a temporary hold on the card to ensure its validity.
|
ENUM_3D_SECURE
The contingency surfaced as an additional security layer that helps prevent unauthorized card-not-present transactions and protects the merchant from exposure to fraud.
|
SCA_ALWAYS
Selecting this option will attempt to force a strong customer authentication for the authorization/transaction.
|
SCA_WHEN_REQUIRED
This is the default.
|
| Modifier and Type | Method and Description |
|---|---|
static OrdersCardVerificationMethod |
constructFromString(String toConvert)
Returns the enum member associated with the given string value.
|
static OrdersCardVerificationMethod |
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<OrdersCardVerificationMethod> toConvert)
Convert list of OrdersCardVerificationMethod values to list of string values.
|
String |
value()
Returns the string value associated with the enum member.
|
static OrdersCardVerificationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrdersCardVerificationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrdersCardVerificationMethod SCA_ALWAYS
public static final OrdersCardVerificationMethod SCA_WHEN_REQUIRED
public static final OrdersCardVerificationMethod ENUM_3D_SECURE
public static final OrdersCardVerificationMethod AVS_CVV
public static final OrdersCardVerificationMethod _UNKNOWN
public static OrdersCardVerificationMethod[] values()
for (OrdersCardVerificationMethod c : OrdersCardVerificationMethod.values()) System.out.println(c);
public static OrdersCardVerificationMethod 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 OrdersCardVerificationMethod 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 OrdersCardVerificationMethod fromString(String toConvert)
toConvert - String value to get enum member.public String value()
public String toString()
toString in class Enum<OrdersCardVerificationMethod>public static List<String> toValue(List<OrdersCardVerificationMethod> toConvert)
toConvert - The list of OrdersCardVerificationMethod values to convert.Copyright © 2025. All rights reserved.