Enum Tax
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONEБез НДС
VAT_0НДС по ставке 0%
VAT_5НДС чека по ставке 5%
VAT_7НДС чека по ставке 7%
VAT_10НДС чека по ставке 10%
VAT_18НДС чека по ставке 18%
VAT_105НДС чека по расчетной ставке 5/105
VAT_107НДС чека по расчетной ставке 7/107
VAT_110НДС чека по расчетной ставке 10/110
VAT_118НДС чека по расчетной ставке 18/118
VAT_20НДС чека по ставке 20%
VAT_120НДС чека по расчетной ставке 20/120
-
Method Summary
Modifier and Type Method Description StringtoString()final TaxvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<Tax>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<Tax>getEntries()Ставка налога -
-
Method Detail
-
valueOf
final Tax valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<Tax> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<Tax> getEntries()
Ставка налога
-
-
-
-