public enum TaxSystem extends Enum<TaxSystem>
| Enum Constant and Description |
|---|
GENERAL_TAX_SYSTEM |
PATENT_BASED |
PRESUMPTIVE_TAX_SYSTEM |
SIMPLIFIED_TAX_SYSTEM_INCOME |
SIMPLIFIED_TAX_SYSTEM_INCOME_OUTCOME |
UNIFIED_AGRICULTURAL_TAX |
| Modifier and Type | Method and Description |
|---|---|
static TaxSystem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaxSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaxSystem GENERAL_TAX_SYSTEM
public static final TaxSystem SIMPLIFIED_TAX_SYSTEM_INCOME
public static final TaxSystem SIMPLIFIED_TAX_SYSTEM_INCOME_OUTCOME
public static final TaxSystem UNIFIED_AGRICULTURAL_TAX
public static final TaxSystem PRESUMPTIVE_TAX_SYSTEM
public static final TaxSystem PATENT_BASED
public static TaxSystem[] values()
for (TaxSystem c : TaxSystem.values()) System.out.println(c);
public static TaxSystem 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 © 2021. All rights reserved.