Enum 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 Detail

      • 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).
      • 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 name
        NullPointerException - 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