public enum ETxTy extends Enum<ETxTy>
Tax Type INCOME/SALES/EMPLOYEE/EMPLOYER/OTHER.
| Enum Constant and Description |
|---|
TEMPLOYEE
2 Employment taxes from employee,
e.g.
|
TEMPLOYER
3 Employment taxes from employer,
e.g.
|
TINCOME
0 Income taxes due to business owner.
|
TOTHER
4 Other taxes.
|
TSALES
1 Sales taxes, e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static ETxTy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ETxTy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ETxTy TINCOME
0 Income taxes due to business owner.
public static final ETxTy TSALES
1 Sales taxes, e.g. any USA state sales tax or VAT.
public static final ETxTy TEMPLOYEE
2 Employment taxes from employee, e.g. USA Federal Income Tax, Medicare.
public static final ETxTy TEMPLOYER
3 Employment taxes from employer, e.g. USA FUTA.
public static final ETxTy TOTHER
4 Other taxes.
public static ETxTy[] values()
for (ETxTy c : ETxTy.values()) System.out.println(c);
public static ETxTy 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 © 2019. All rights reserved.