Enum BatchType
- java.lang.Object
-
- java.lang.Enum<BatchType>
-
- net.avalara.avatax.rest.client.enums.BatchType
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static BatchTypevalueOf(int intValue)Returns the enum constant of this type with the specified name.static BatchTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BatchType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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
-
UPCBulkImport
public static final BatchType UPCBulkImport
-
UPCValidationImport
public static final BatchType UPCValidationImport
-
CustomerSupplierImport
public static final BatchType CustomerSupplierImport
-
-
Method Detail
-
values
public static BatchType[] 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 (BatchType c : BatchType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BatchType 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 namejava.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public int getValue()
-
-