Interface Money
public interface Money
Money
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
Money money = Money.builder()
.centAmount(0.3)
.currencyCode("{currencyCode}")
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic MoneyBuilderbuilder()builder factory method for Moneystatic MoneyBuildercreate builder for Money instancestatic Moneyfactory method to create a deep copy of Money@NotNull Long@NotNull StringThe currency code compliant to ISO 4217.static Moneyof()factory methodstatic Moneyfactory method to create a shallow copy MoneyvoidsetCentAmount(Long centAmount) set centAmountvoidsetCurrencyCode(String currencyCode) The currency code compliant to ISO 4217.static com.fasterxml.jackson.core.type.TypeReference<Money>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map function
-
Method Details
-
getCentAmount
- Returns:
- centAmount
-
getCurrencyCode
The currency code compliant to ISO 4217.
- Returns:
- currencyCode
-
setCentAmount
set centAmount- Parameters:
centAmount- value to be set
-
setCurrencyCode
The currency code compliant to ISO 4217.
- Parameters:
currencyCode- value to be set
-
of
factory method- Returns:
- instance of Money
-
of
factory method to create a shallow copy Money- Parameters:
template- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of Money- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for Money- Returns:
- builder
-
builder
create builder for Money instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withMoney
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
-