Package com.adyen.model.nexo
Enum AuthenticationMethodType
- java.lang.Object
-
- java.lang.Enum<AuthenticationMethodType>
-
- com.adyen.model.nexo.AuthenticationMethodType
-
- All Implemented Interfaces:
Serializable,Comparable<AuthenticationMethodType>
public enum AuthenticationMethodType extends Enum<AuthenticationMethodType>
Java class for AuthenticationMethodType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AuthenticationMethodType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Bypass"/> <enumeration value="ManualVerification"/> <enumeration value="MerchantAuthentication"/> <enumeration value="OfflinePIN"/> <enumeration value="OnlinePIN"/> <enumeration value="PaperSignature"/> <enumeration value="SecuredChannel"/> <enumeration value="SecureCertificate"/> <enumeration value="SecureNoCertificate"/> <enumeration value="SignatureCapture"/> <enumeration value="UnknownMethod"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BYPASSAuthentication bypassed by the merchant.MANUAL_VERIFICATIONManual verification, for example passport or drivers license.MERCHANT_AUTHENTICATIONMerchant-related authentication.OFFLINE_PINOff-line PIN authentication (Personal Identification Number).ON_LINE_PINOn-line PIN authentication (Personal Identification Number).PAPER_SIGNATUREHandwritten paper signature.SECURE_CERTIFICATESecure electronic transaction with cardholder X.509 certificate.SECURE_NO_CERTIFICATESecure electronic transaction without cardholder certificate.SECURED_CHANNELChannel-encrypted transaction.SIGNATURE_CAPTUREElectronic signature capture (handwritten signature).UNKNOWN_METHODAuthentication method is performed unknown.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuthenticationMethodTypefromValue(String v)From value authentication method type.String[]value()Values array.static AuthenticationMethodTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationMethodType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BYPASS
public static final AuthenticationMethodType BYPASS
Authentication bypassed by the merchant.
-
MANUAL_VERIFICATION
public static final AuthenticationMethodType MANUAL_VERIFICATION
Manual verification, for example passport or drivers license.
-
MERCHANT_AUTHENTICATION
public static final AuthenticationMethodType MERCHANT_AUTHENTICATION
Merchant-related authentication.
-
OFFLINE_PIN
public static final AuthenticationMethodType OFFLINE_PIN
Off-line PIN authentication (Personal Identification Number).
-
ON_LINE_PIN
public static final AuthenticationMethodType ON_LINE_PIN
On-line PIN authentication (Personal Identification Number).
-
PAPER_SIGNATURE
public static final AuthenticationMethodType PAPER_SIGNATURE
Handwritten paper signature.
-
SECURED_CHANNEL
public static final AuthenticationMethodType SECURED_CHANNEL
Channel-encrypted transaction.
-
SECURE_CERTIFICATE
public static final AuthenticationMethodType SECURE_CERTIFICATE
Secure electronic transaction with cardholder X.509 certificate.
-
SECURE_NO_CERTIFICATE
public static final AuthenticationMethodType SECURE_NO_CERTIFICATE
Secure electronic transaction without cardholder certificate.
-
SIGNATURE_CAPTURE
public static final AuthenticationMethodType SIGNATURE_CAPTURE
Electronic signature capture (handwritten signature).
-
UNKNOWN_METHOD
public static final AuthenticationMethodType UNKNOWN_METHOD
Authentication method is performed unknown.
-
-
Method Detail
-
values
public static AuthenticationMethodType[] 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 (AuthenticationMethodType c : AuthenticationMethodType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthenticationMethodType 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
-
value
public String[] value()
Values array.- Returns:
- the values
-
fromValue
public static AuthenticationMethodType fromValue(String v)
From value authentication method type.- Parameters:
v- the v- Returns:
- the authentication method type
-
-