Enum MatchingTaxType
- java.lang.Object
-
- java.lang.Enum<MatchingTaxType>
-
- net.avalara.avatax.rest.client.enums.MatchingTaxType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MatchingTaxType>
public enum MatchingTaxType extends java.lang.Enum<MatchingTaxType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AllBatteriesBothSalesAndUseTaxBottleConsumersUseAndSellersUseTaxConsumerUseAndSalesTaxConsumerUseTaxEEWasteFeeLightBulbsLodgingMealsPIFRentalRentToOwnSalesTaxUseTaxVATInputTaxVATNonrecoverableInputTaxVATOutputTax
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static MatchingTaxTypevalueOf(int intValue)Returns the enum constant of this type with the specified name.static MatchingTaxTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MatchingTaxType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
E
public static final MatchingTaxType E
-
Lodging
public static final MatchingTaxType Lodging
-
Bottle
public static final MatchingTaxType Bottle
-
RentToOwn
public static final MatchingTaxType RentToOwn
-
All
public static final MatchingTaxType All
-
BothSalesAndUseTax
public static final MatchingTaxType BothSalesAndUseTax
-
ConsumerUseTax
public static final MatchingTaxType ConsumerUseTax
-
ConsumersUseAndSellersUseTax
public static final MatchingTaxType ConsumersUseAndSellersUseTax
-
ConsumerUseAndSalesTax
public static final MatchingTaxType ConsumerUseAndSalesTax
-
Fee
public static final MatchingTaxType Fee
-
VATInputTax
public static final MatchingTaxType VATInputTax
-
LightBulbs
public static final MatchingTaxType LightBulbs
-
Meals
public static final MatchingTaxType Meals
-
VATNonrecoverableInputTax
public static final MatchingTaxType VATNonrecoverableInputTax
-
VATOutputTax
public static final MatchingTaxType VATOutputTax
-
PIF
public static final MatchingTaxType PIF
-
Rental
public static final MatchingTaxType Rental
-
SalesTax
public static final MatchingTaxType SalesTax
-
UseTax
public static final MatchingTaxType UseTax
-
EWaste
public static final MatchingTaxType EWaste
-
Batteries
public static final MatchingTaxType Batteries
-
-
Method Detail
-
values
public static MatchingTaxType[] 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 (MatchingTaxType c : MatchingTaxType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MatchingTaxType 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 MatchingTaxType 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()
-
-