Package com.adyen.model.acswebhooks
Enum AuthenticationInfo.ExemptionIndicatorEnum
- java.lang.Object
-
- java.lang.Enum<AuthenticationInfo.ExemptionIndicatorEnum>
-
- com.adyen.model.acswebhooks.AuthenticationInfo.ExemptionIndicatorEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AuthenticationInfo.ExemptionIndicatorEnum>
- Enclosing class:
- AuthenticationInfo
public static enum AuthenticationInfo.ExemptionIndicatorEnum extends Enum<AuthenticationInfo.ExemptionIndicatorEnum>
Indicates the exemption type that was applied to the authentication by the issuer, if exemption applied. Possible values: * **lowValue** * **secureCorporate** * **trustedBeneficiary** * **transactionRiskAnalysis** * **acquirerExemption** * **noExemptionApplied** * **visaDAFExemption**
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACQUIREREXEMPTIONLOWVALUENOEXEMPTIONAPPLIEDSECURECORPORATETRANSACTIONRISKANALYSISTRUSTEDBENEFICIARYVISADAFEXEMPTION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuthenticationInfo.ExemptionIndicatorEnumfromValue(String value)StringgetValue()StringtoString()static AuthenticationInfo.ExemptionIndicatorEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationInfo.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 AuthenticationInfo.ExemptionIndicatorEnum LOWVALUE
-
SECURECORPORATE
public static final AuthenticationInfo.ExemptionIndicatorEnum SECURECORPORATE
-
TRUSTEDBENEFICIARY
public static final AuthenticationInfo.ExemptionIndicatorEnum TRUSTEDBENEFICIARY
-
TRANSACTIONRISKANALYSIS
public static final AuthenticationInfo.ExemptionIndicatorEnum TRANSACTIONRISKANALYSIS
-
ACQUIREREXEMPTION
public static final AuthenticationInfo.ExemptionIndicatorEnum ACQUIREREXEMPTION
-
NOEXEMPTIONAPPLIED
public static final AuthenticationInfo.ExemptionIndicatorEnum NOEXEMPTIONAPPLIED
-
VISADAFEXEMPTION
public static final AuthenticationInfo.ExemptionIndicatorEnum VISADAFEXEMPTION
-
-
Method Detail
-
values
public static AuthenticationInfo.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 (AuthenticationInfo.ExemptionIndicatorEnum c : AuthenticationInfo.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 AuthenticationInfo.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<AuthenticationInfo.ExemptionIndicatorEnum>
-
fromValue
public static AuthenticationInfo.ExemptionIndicatorEnum fromValue(String value)
-
-