public enum TaxOverrideType extends java.lang.Enum<TaxOverrideType>
| Enum Constant and Description |
|---|
AccruedTaxAmount
No comment data provided
|
DeriveTaxable
No comment data provided
|
Exemption
No comment data provided
|
None
No comment data provided
|
TaxAmount
No comment data provided
|
TaxDate
No comment data provided
|
| 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