Module jonix.common

Enum Class DiscountTypes

java.lang.Object
java.lang.Enum<DiscountTypes>
com.tectonica.jonix.common.codelist.DiscountTypes
All Implemented Interfaces:
OnixCodelist, Serializable, Comparable<DiscountTypes>, Constable

public enum DiscountTypes extends Enum<DiscountTypes> implements OnixCodelist
Enum that corresponds to ONIX Codelist 170

Description: Discount type

See Also:
  • Enum Constant Details

    • Rising_discount

      public static final DiscountTypes Rising_discount
      Discount applied to all units in a qualifying order. The default if no <DiscountType> is specified
    • Rising_discount_cumulative

      public static final DiscountTypes Rising_discount_cumulative
      Additional discount may be applied retrospectively, based on number of units ordered over a specific period
    • Progressive_discount

      public static final DiscountTypes Progressive_discount
      Discount applied to marginal units in a qualifying order
    • Progressive_discount_cumulative

      public static final DiscountTypes Progressive_discount_cumulative
      Previous orders within a specific time period are counted when calculating a progressive discount
  • Field Details

    • code

      public final String code
    • description

      public final String description
  • Method Details

    • values

      public static DiscountTypes[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DiscountTypes valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getCode

      public String getCode()
      Specified by:
      getCode in interface OnixCodelist
    • getDescription

      public String getDescription()
      Specified by:
      getDescription in interface OnixCodelist
    • byCode

      public static DiscountTypes byCode(String code)
    • byCodeOptional

      public static Optional<DiscountTypes> byCodeOptional(String code)
    • codeToDesciption

      public static String codeToDesciption(String code)