Enum TransactionAuthorizationStatus

    • Enum Constant Detail

      • NA

        public static final TransactionAuthorizationStatus NA
        The transaction wasn't submitted for authorization. NOTE: This status exists only because we need a database index in the corresponding column, and we have problems using is null / is not null. However, this value is never returned from services.
      • AUTHORIZATION_EXPIRED

        public static final TransactionAuthorizationStatus AUTHORIZATION_EXPIRED
        The authorization proccess was not completed before the time defined in the transfer type The authorization proccess is expired because it has exceeded the available time to be completly proccessed defined in the transfer type
      • AUTHORIZATION_CANCELED

        public static final TransactionAuthorizationStatus AUTHORIZATION_CANCELED
        The transaction performer has canceled this payment before it's been completely processed
    • Method Detail

      • values

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

        public static TransactionAuthorizationStatus 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