Enum BatchType

java.lang.Object
java.lang.Enum<BatchType>
net.avalara.avatax.rest.client.enums.BatchType
All Implemented Interfaces:
Serializable, Comparable<BatchType>, java.lang.constant.Constable

public enum BatchType extends Enum<BatchType>
The type of data contained in this batch
  • Enum Constant Details

    • AvaCertUpdate

      public static final BatchType AvaCertUpdate
    • AvaCertUpdateAll

      public static final BatchType AvaCertUpdateAll
    • BatchMaintenance

      public static final BatchType BatchMaintenance
    • CompanyLocationImport

      public static final BatchType CompanyLocationImport
    • DocumentImport

      public static final BatchType DocumentImport
    • ExemptCertImport

      public static final BatchType ExemptCertImport
    • ItemImport

      public static final BatchType ItemImport
    • SalesAuditExport

      public static final BatchType SalesAuditExport
    • SstpTestDeckImport

      public static final BatchType SstpTestDeckImport
    • TaxRuleImport

      public static final BatchType TaxRuleImport
    • TransactionImport

      public static final BatchType TransactionImport
      This batch type represents tax transaction data being uploaded to AvaTax. Each line in the batch represents a single transaction or a line in a multi-line transaction. For reference, see [Batched Transactions in REST v2](http://developer.avalara.com/blog/2016/10/24/batch-transaction-upload-in-rest-v2)
    • UPCBulkImport

      public static final BatchType UPCBulkImport
    • UPCValidationImport

      public static final BatchType UPCValidationImport
    • CustomerSupplierImport

      public static final BatchType CustomerSupplierImport
    • VarianceImport

      public static final BatchType VarianceImport
    • CostCenterImport

      public static final BatchType CostCenterImport
    • GLAccountImport

      public static final BatchType GLAccountImport
  • Method Details

    • values

      public static BatchType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static BatchType 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
    • valueOf

      public static BatchType valueOf(int intValue)
      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:
      intValue - 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
    • getValue

      public int getValue()