Enum Tax

  • All Implemented Interfaces:
    java.io.Serializable , kotlin.Comparable

    
    public enum Tax
    extends Enum<Tax>
                        

    Ставка налога

    Author:

    Mariya Chernyadieva

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • 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
      String toString()
      final Tax valueOf(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() Ставка налога
      • Methods inherited from class kotlin.Enum

        getName, getOrdinal
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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.