Enum TaxOverrideType
- java.lang.Object
-
- java.lang.Enum<TaxOverrideType>
-
- net.avalara.avatax.rest.client.enums.TaxOverrideType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TaxOverrideType>
public enum TaxOverrideType extends java.lang.Enum<TaxOverrideType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AccruedTaxAmountDeriveTaxableExemptionNoneOutOfHarborTaxAmountTaxAmountByTaxTypeTaxDate
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static TaxOverrideTypevalueOf(int intValue)Returns the enum constant of this type with the specified name.static TaxOverrideTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TaxOverrideType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final TaxOverrideType None
-
TaxAmount
public static final TaxOverrideType TaxAmount
-
Exemption
public static final TaxOverrideType Exemption
-
TaxDate
public static final TaxOverrideType TaxDate
-
AccruedTaxAmount
public static final TaxOverrideType AccruedTaxAmount
-
DeriveTaxable
public static final TaxOverrideType DeriveTaxable
-
OutOfHarbor
public static final TaxOverrideType OutOfHarbor
-
TaxAmountByTaxType
public static final TaxOverrideType TaxAmountByTaxType
-
-
Method Detail
-
values
public static TaxOverrideType[] 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 (TaxOverrideType c : TaxOverrideType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaxOverrideType 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 TaxOverrideType 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()
-
-