Uses of Class
com.ail.financial.Currency

Packages that use Currency
com.ail.financial   
 

Uses of Currency in com.ail.financial
 

Methods in com.ail.financial that return Currency
static Currency Currency.forName(java.lang.String name)
          This method is similar to the valueOf() method offered by Java's Enum type, but in this case it will match either the Enum's name or the longName.
 Currency CurrencyAmount.getCurrency()
          Get the amount's currency
static Currency Currency.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Currency[] Currency.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in com.ail.financial with parameters of type Currency
 boolean CurrencyAmount.greaterThan(double amount, Currency currency)
          Compare the value of amount in currency with the amount represented by this.
 boolean CurrencyAmount.lessThan(double amount, Currency currency)
          Compare the value of amount in currency with the amount represented by this.
 

Constructors in com.ail.financial with parameters of type Currency
CurrencyAmount(java.math.BigDecimal amount, Currency currency)
          Constructor
CurrencyAmount(double amount, Currency currency)
          Constructor
CurrencyAmount(java.lang.String amount, Currency currency)
          Constructor