Package com.checkout.common
Enum Exemption
- java.lang.Object
-
- java.lang.Enum<Exemption>
-
- com.checkout.common.Exemption
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATA_SHARELOW_RISK_PROGRAMLOW_VALUENONEOTHEROUT_OF_SCA_SCOPERECURRING_OPERATIONSCA_DELEGATIONSECURE_CORPORATE_PAYMENTTHREE_DS_OUTAGETRANSACTION_RISK_ASSESSMENTTRUSTED_LISTINGTRUSTED_LISTING_PROMPT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExemptionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Exemption[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOW_VALUE
@SerializedName("low_value") public static final Exemption LOW_VALUE
-
TRUSTED_LISTING
@SerializedName("trusted_listing") public static final Exemption TRUSTED_LISTING
-
TRUSTED_LISTING_PROMPT
@SerializedName("trusted_listing_prompt") public static final Exemption TRUSTED_LISTING_PROMPT
-
TRANSACTION_RISK_ASSESSMENT
@SerializedName("transaction_risk_assessment") public static final Exemption TRANSACTION_RISK_ASSESSMENT
-
THREE_DS_OUTAGE
@SerializedName("3ds_outage") public static final Exemption THREE_DS_OUTAGE
-
SCA_DELEGATION
@SerializedName("sca_delegation") public static final Exemption SCA_DELEGATION
-
OUT_OF_SCA_SCOPE
@SerializedName("out_of_sca_scope") public static final Exemption OUT_OF_SCA_SCOPE
-
LOW_RISK_PROGRAM
@SerializedName("low_risk_program") public static final Exemption LOW_RISK_PROGRAM
-
RECURRING_OPERATION
@SerializedName("recurring_operation") public static final Exemption RECURRING_OPERATION
-
DATA_SHARE
@SerializedName("data_share") public static final Exemption DATA_SHARE
-
OTHER
@SerializedName("other") public static final Exemption OTHER
-
NONE
@SerializedName(value="None", alternate={"NONE","none"}) public static final Exemption NONE
-
SECURE_CORPORATE_PAYMENT
@SerializedName("secure_corporate_payment") public static final Exemption SECURE_CORPORATE_PAYMENT
-
-
Method Detail
-
values
public static Exemption[] 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 (Exemption c : Exemption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Exemption valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-