Interface TaxedItemPrice


public interface TaxedItemPrice
TaxedItemPrice
Example to create an instance using the builder pattern

     TaxedItemPrice taxedItemPrice = TaxedItemPrice.builder()
             .totalNet(totalNetBuilder -> totalNetBuilder)
             .totalGross(totalGrossBuilder -> totalGrossBuilder)
             .plusTaxPortions(taxPortionsBuilder -> taxPortionsBuilder)
             .build()
 
  • Method Details

    • getTotalNet

      @NotNull @Valid @NotNull @Valid CentPrecisionMoney getTotalNet()

      Total net amount of the Line Item or Custom Line Item.

      Returns:
      totalNet
    • getTotalGross

      @NotNull @Valid @NotNull @Valid CentPrecisionMoney getTotalGross()

      Total gross amount of the Line Item or Custom Line Item.

      Returns:
      totalGross
    • getTaxPortions

      @NotNull @Valid @NotNull @Valid List<TaxPortion> getTaxPortions()

      Taxable portions added to the total net price.

      Calculated from the TaxRates.

      Returns:
      taxPortions
    • getTotalTax

      @Valid @Valid CentPrecisionMoney getTotalTax()

      Total tax applicable for the Line Item or Custom Line Item. Automatically calculated as the difference between the totalGross and totalNet values.

      Returns:
      totalTax
    • setTotalNet

      void setTotalNet(CentPrecisionMoney totalNet)

      Total net amount of the Line Item or Custom Line Item.

      Parameters:
      totalNet - value to be set
    • setTotalGross

      void setTotalGross(CentPrecisionMoney totalGross)

      Total gross amount of the Line Item or Custom Line Item.

      Parameters:
      totalGross - value to be set
    • setTaxPortions

      void setTaxPortions(TaxPortion... taxPortions)

      Taxable portions added to the total net price.

      Calculated from the TaxRates.

      Parameters:
      taxPortions - values to be set
    • setTaxPortions

      void setTaxPortions(List<TaxPortion> taxPortions)

      Taxable portions added to the total net price.

      Calculated from the TaxRates.

      Parameters:
      taxPortions - values to be set
    • setTotalTax

      void setTotalTax(CentPrecisionMoney totalTax)

      Total tax applicable for the Line Item or Custom Line Item. Automatically calculated as the difference between the totalGross and totalNet values.

      Parameters:
      totalTax - value to be set
    • of

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

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

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

      static TaxedItemPriceBuilder builder()
      builder factory method for TaxedItemPrice
      Returns:
      builder
    • builder

      static TaxedItemPriceBuilder builder(TaxedItemPrice template)
      create builder for TaxedItemPrice instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withTaxedItemPrice

      default <T> T withTaxedItemPrice(Function<TaxedItemPrice,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<TaxedItemPrice> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference