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)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic TaxedPriceBuilder
builder()
builder factory method for TaxedPricestatic TaxedPriceBuilder
builder
(TaxedPrice template) create builder for TaxedPrice instancestatic TaxedPrice
deepCopy
(TaxedPrice template) factory method to create a deep copy of TaxedPrice@NotNull @Valid Money
Total gross price of the Order.@NotNull @Valid Money
Total net price of the Order.static TaxedPrice
of()
factory methodstatic TaxedPrice
of
(TaxedPrice template) factory method to create a shallow copy TaxedPricevoid
setTotalGross
(Money totalGross) Total gross price of the Order.void
setTotalNet
(Money totalNet) Total net price of the Order.static com.fasterxml.jackson.core.type.TypeReference<TaxedPrice>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withTaxedPrice
(Function<TaxedPrice, T> helper) accessor map function
-
Method Details
-
getTotalNet
Total net price of the Order.
- Returns:
- totalNet
-
getTotalGross
Total gross price of the Order.
- Returns:
- totalGross
-
setTotalNet
Total net price of the Order.
- Parameters:
totalNet
- value to be set
-
setTotalGross
Total gross price of the Order.
- Parameters:
totalGross
- value 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
-
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
-