Interface Stacking

All Superinterfaces:
DiscountTypeCombination

public interface Stacking extends DiscountTypeCombination

Indicates both Product Discounts and Cart Discounts apply to a Cart and Order.


Example to create an instance using the builder pattern

     Stacking stacking = Stacking.builder()
             .build()
 
  • Field Details

  • Method Details

    • of

      static Stacking of()
      factory method
      Returns:
      instance of Stacking
    • of

      static Stacking of(Stacking template)
      factory method to create a shallow copy Stacking
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      @Nullable static Stacking deepCopy(@Nullable Stacking template)
      factory method to create a deep copy of Stacking
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      static StackingBuilder builder()
      builder factory method for Stacking
      Returns:
      builder
    • builder

      static StackingBuilder builder(Stacking template)
      create builder for Stacking instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withStacking

      default <T> T withStacking(Function<Stacking,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<Stacking> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference