Interface TaxedPrice
public interface TaxedPrice
TaxedPrice
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
TaxedPrice taxedPrice = TaxedPrice.builder()
.totalNet(totalNetBuilder -> totalNetBuilder)
.totalGross(totalGrossBuilder -> totalGrossBuilder)
.plusTaxPortions(taxPortionsBuilder -> taxPortionsBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic TaxedPriceBuilderbuilder()builder factory method for TaxedPricestatic TaxedPriceBuilderbuilder(TaxedPrice template) create builder for TaxedPrice instancecopyDeep()static TaxedPricedeepCopy(TaxedPrice template) factory method to create a deep copy of TaxedPrice@NotNull @Valid List<TaxPortion>Maps toTaxedPrice.taxPortions.@NotNull @Valid MoneyMaps toTaxedPrice.totalGross.@NotNull @Valid MoneyMaps toTaxedPrice.totalNet.static TaxedPriceof()factory methodstatic TaxedPriceof(TaxedPrice template) factory method to create a shallow copy TaxedPricevoidsetTaxPortions(TaxPortion... taxPortions) Maps toTaxedPrice.taxPortions.voidsetTaxPortions(List<TaxPortion> taxPortions) Maps toTaxedPrice.taxPortions.voidsetTotalGross(Money totalGross) Maps toTaxedPrice.totalGross.voidsetTotalNet(Money totalNet) Maps toTaxedPrice.totalNet.static com.fasterxml.jackson.core.type.TypeReference<TaxedPrice>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithTaxedPrice(Function<TaxedPrice, T> helper) accessor map function
-
Method Details
-
getTotalNet
Maps to
TaxedPrice.totalNet.- Returns:
- totalNet
-
getTotalGross
Maps to
TaxedPrice.totalGross.- Returns:
- totalGross
-
getTaxPortions
Maps to
TaxedPrice.taxPortions.- Returns:
- taxPortions
-
setTotalNet
Maps to
TaxedPrice.totalNet.- Parameters:
totalNet- value to be set
-
setTotalGross
Maps to
TaxedPrice.totalGross.- Parameters:
totalGross- value to be set
-
setTaxPortions
Maps to
TaxedPrice.taxPortions.- Parameters:
taxPortions- values to be set
-
setTaxPortions
Maps to
TaxedPrice.taxPortions.- Parameters:
taxPortions- values to be set
-
of
factory method- Returns:
- instance of TaxedPrice
-
of
factory method to create a shallow copy TaxedPrice- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
TaxedPrice copyDeep() -
deepCopy
factory method to create a deep copy of TaxedPrice- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for TaxedPrice- Returns:
- builder
-
builder
create builder for TaxedPrice instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withTaxedPrice
accessor map function- Type Parameters:
T- mapped type- Parameters:
helper- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-