| Enum Constant and Description |
|---|
ENVD
Единый налог на вмененный доход.
|
ESN
Единый сельскохозяйственный налог.
|
OSN
Общая СН.
|
PATENT
Патентная СН.
|
USN_INCOME
Упрощенная СН (доходы).
|
USN_INCOME_OUTCOME
Упрощенная СН (доходы минус расходы).
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Taxation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Taxation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Taxation OSN
public static final Taxation USN_INCOME
public static final Taxation USN_INCOME_OUTCOME
public static final Taxation ENVD
public static final Taxation ESN
public static final Taxation PATENT
public static Taxation[] values()
for (Taxation c : Taxation.values()) System.out.println(c);
public static Taxation 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<Taxation>