Interface TypedMoney

All Known Subinterfaces:
HighPrecisionMoney, Money
All Known Implementing Classes:
HighPrecisionMoneyImpl, MoneyImpl, TypedMoneyImpl

public interface TypedMoney
TypedMoney
Example to create a subtype instance using the builder pattern

     TypedMoney typedMoney = TypedMoney.highPrecisionBuilder()
             centAmount(0.3)
             currencyCode("{currencyCode}")
             preciseAmount(0.3)
             .build()