Enum ThreeDsReqAuthMethodType

    • Enum Constant Detail

      • FIDO_AUTHENTICATOR

        @SerializedName("fido_authenticator")
        public static final ThreeDsReqAuthMethodType FIDO_AUTHENTICATOR
      • FIDO_AUTHENTICATOR_FIDO_ASSURANCE_DATA_SIGNED

        @SerializedName("fido_authenticator_fido_assurance_data_signed")
        public static final ThreeDsReqAuthMethodType FIDO_AUTHENTICATOR_FIDO_ASSURANCE_DATA_SIGNED
      • ISSUER_CREDENTIALS

        @SerializedName("issuer_credentials")
        public static final ThreeDsReqAuthMethodType ISSUER_CREDENTIALS
      • NO_THREEDS_REQUESTOR_AUTHENTICATION_OCCURRED

        @SerializedName("no_threeds_requestor_authentication_occurred")
        public static final ThreeDsReqAuthMethodType NO_THREEDS_REQUESTOR_AUTHENTICATION_OCCURRED
      • SRC_ASSURANCE_DATA

        @SerializedName("src_assurance_data")
        public static final ThreeDsReqAuthMethodType SRC_ASSURANCE_DATA
      • THREE3DS_REQUESTOR_OWN_CREDENTIALS

        @SerializedName("three3ds_requestor_own_credentials")
        public static final ThreeDsReqAuthMethodType THREE3DS_REQUESTOR_OWN_CREDENTIALS
      • THIRD_PARTY_AUTHENTICATION

        @SerializedName("third_party_authentication")
        public static final ThreeDsReqAuthMethodType THIRD_PARTY_AUTHENTICATION
    • Method Detail

      • values

        public static ThreeDsReqAuthMethodType[] 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 (ThreeDsReqAuthMethodType c : ThreeDsReqAuthMethodType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ThreeDsReqAuthMethodType 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 name
        java.lang.NullPointerException - if the argument is null