public enum TaxOverrideType extends java.lang.Enum<TaxOverrideType>
| Enum Constant and Description |
|---|
AccruedTaxAmount
To support Consumer Use Tax
|
DeriveTaxable
Derive the taxable amount from the tax amount
|
Exemption
Entity exemption was ignored (e.g.
|
None
No override
|
TaxAmount
Tax was overriden by the client
|
TaxDate
Only the tax date was overriden
|
| Modifier and Type | Method and Description |
|---|---|
static TaxOverrideType |
valueOf(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.
|
public static final TaxOverrideType None
public static final TaxOverrideType TaxAmount
public static final TaxOverrideType Exemption
public static final TaxOverrideType TaxDate
public static final TaxOverrideType AccruedTaxAmount
public static final TaxOverrideType DeriveTaxable
public static TaxOverrideType[] values()
for (TaxOverrideType c : TaxOverrideType.values()) System.out.println(c);
public static TaxOverrideType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null