java.lang.Object
com.broadleafcommerce.paypal.micro.gateway.domain.orders.Money
All Implemented Interfaces:
Serializable

public class Money extends Object implements Serializable
Author:
Dima Myroniuk (dmyroniuk)
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    The three-character ISO-4217 currency code that identifies the currency.
    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.
    void
    setCurrencyCode(String currencyCode)
    The three-character ISO-4217 currency code that identifies the currency.
    void
    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.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Money

      public Money()
  • Method Details

    • 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.