Class Money

    • Constructor Summary

      Constructors 
      Constructor Description
      Money()  
    • Constructor Detail

      • Money

        public Money()
    • Method Detail

      • setCurrencyCode

        public void setCurrencyCode​(String currencyCode)
        The three-character ISO-4217 currency code that identifies the currency.
      • setValue

        public void setValue​(String value)
        The value, which might be:
        • An integer for currencies like JPY that are not typically fractional.
        • A decimal fraction for currencies like TND that are subdivided into thousandths.
        For the required number of decimal places for a currency code, see Currency Codes.
      • getCurrencyCode

        public String getCurrencyCode()
        The three-character ISO-4217 currency code that identifies the currency.
      • getValue

        public String getValue()
        The value, which might be:
        • An integer for currencies like JPY that are not typically fractional.
        • A decimal fraction for currencies like TND that are subdivided into thousandths.
        For the required number of decimal places for a currency code, see Currency Codes.