public enum ETaxType extends Enum<ETaxType>
Tax Type INCOME_TAX/SALES_TAX_INITEM/SALES_TAX_OUTITEM/ EMPLOYMENT_TAX_EMPLOYEE/EMPLOYMENT_TAX_EMPLOYER/OTHER_TAX.
| Enum Constant and Description |
|---|
EMPLOYMENT_TAX_EMPLOYEE
3 Employment taxes from employee,
e.g.
|
EMPLOYMENT_TAX_EMPLOYER
4 Employment taxes from employer,
e.g.
|
INCOME_TAX
0 Income taxes.
|
OTHER_TAX
5 Other taxes.
|
SALES_TAX_INITEM
1 Sales taxes included into inventory
e.g.
|
SALES_TAX_OUTITEM
2 Sales taxes self-deductible excluded from inventory
e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static ETaxType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ETaxType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ETaxType INCOME_TAX
0 Income taxes.
public static final ETaxType SALES_TAX_INITEM
1 Sales taxes included into inventory e.g. US state sales tax.
public static final ETaxType SALES_TAX_OUTITEM
2 Sales taxes self-deductible excluded from inventory e.g. VAT tax.
public static final ETaxType EMPLOYMENT_TAX_EMPLOYEE
3 Employment taxes from employee, e.g. US Federal Income Tax, Medicare.
public static final ETaxType EMPLOYMENT_TAX_EMPLOYER
4 Employment taxes from employer, e.g. US FUTA.
public static final ETaxType OTHER_TAX
5 Other taxes.
public static ETaxType[] values()
for (ETaxType c : ETaxType.values()) System.out.println(c);
public static ETaxType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016–2018. All rights reserved.