Package com.adyen.model.payment
Enum ThreeDS2Result.ExemptionIndicatorEnum
- java.lang.Object
-
- java.lang.Enum<ThreeDS2Result.ExemptionIndicatorEnum>
-
- com.adyen.model.payment.ThreeDS2Result.ExemptionIndicatorEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ThreeDS2Result.ExemptionIndicatorEnum>
- Enclosing class:
- ThreeDS2Result
public static enum ThreeDS2Result.ExemptionIndicatorEnum extends Enum<ThreeDS2Result.ExemptionIndicatorEnum>
Indicates the exemption type that was applied by the issuer to the authentication, if exemption applied. Allowed values: * `lowValue` * `secureCorporate` * `trustedBeneficiary` * `transactionRiskAnalysis`
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LOWVALUESECURECORPORATETRANSACTIONRISKANALYSISTRUSTEDBENEFICIARY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ThreeDS2Result.ExemptionIndicatorEnumfromValue(String value)StringgetValue()StringtoString()static ThreeDS2Result.ExemptionIndicatorEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ThreeDS2Result.ExemptionIndicatorEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOWVALUE
public static final ThreeDS2Result.ExemptionIndicatorEnum LOWVALUE
-
SECURECORPORATE
public static final ThreeDS2Result.ExemptionIndicatorEnum SECURECORPORATE
-
TRUSTEDBENEFICIARY
public static final ThreeDS2Result.ExemptionIndicatorEnum TRUSTEDBENEFICIARY
-
TRANSACTIONRISKANALYSIS
public static final ThreeDS2Result.ExemptionIndicatorEnum TRANSACTIONRISKANALYSIS
-
-
Method Detail
-
values
public static ThreeDS2Result.ExemptionIndicatorEnum[] 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 (ThreeDS2Result.ExemptionIndicatorEnum c : ThreeDS2Result.ExemptionIndicatorEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThreeDS2Result.ExemptionIndicatorEnum 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<ThreeDS2Result.ExemptionIndicatorEnum>
-
fromValue
public static ThreeDS2Result.ExemptionIndicatorEnum fromValue(String value)
-
-