| Enum Constant and Description |
|---|
NONE
Без НДС
|
VAT_0
НДС по ставке 0%/
|
VAT_10
НДС чека по ставке 10%/
|
VAT_110
НДС чека по расчетной ставке 10/110.
|
VAT_118
НДС чека по расчетной ставке 18/118.
|
VAT_18
НДС чека по ставке 18%/
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Tax |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Tax[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tax NONE
public static final Tax VAT_0
public static final Tax VAT_10
public static final Tax VAT_18
public static final Tax VAT_110
public static final Tax VAT_118
public static Tax[] values()
for (Tax c : Tax.values()) System.out.println(c);
public static Tax 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<Tax>