Interface TaxPortion
public interface TaxPortion
TaxPortion
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
TaxPortion taxPortion = TaxPortion.builder()
.rate(0.3)
.amount(amountBuilder -> amountBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic TaxPortionBuilder
builder()
builder factory method for TaxPortionstatic TaxPortionBuilder
builder
(TaxPortion template) create builder for TaxPortion instancestatic TaxPortion
deepCopy
(TaxPortion template) factory method to create a deep copy of TaxPortion@NotNull @Valid TypedMoney
getName()
@NotNull Double
getRate()
static TaxPortion
of()
factory methodstatic TaxPortion
of
(TaxPortion template) factory method to create a shallow copy TaxPortionvoid
setAmount
(TypedMoney amount) set amountvoid
set namevoid
set ratestatic com.fasterxml.jackson.core.type.TypeReference<TaxPortion>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withTaxPortion
(Function<TaxPortion, T> helper) accessor map function
-
Method Details
-
getName
String getName()- Returns:
- name
-
getRate
- Returns:
- rate
-
getAmount
- Returns:
- amount
-
setName
set name- Parameters:
name
- value to be set
-
setRate
set rate- Parameters:
rate
- value to be set
-
setAmount
set amount- Parameters:
amount
- value to be set
-
of
factory method- Returns:
- instance of TaxPortion
-
of
factory method to create a shallow copy TaxPortion- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of TaxPortion- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for TaxPortion- Returns:
- builder
-
builder
create builder for TaxPortion instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withTaxPortion
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
-