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