Uses of Class
com.ail.financial.FinancialFrequency

Packages that use FinancialFrequency
com.ail.financial   
 

Uses of FinancialFrequency in com.ail.financial
 

Methods in com.ail.financial that return FinancialFrequency
static FinancialFrequency FinancialFrequency.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.
 FinancialFrequency MoneyProvision.getFrequency()
          Getter returning the value of the frequency property.
static FinancialFrequency FinancialFrequency.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FinancialFrequency[] FinancialFrequency.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 FinancialFrequency
 void MoneyProvision.setFrequency(FinancialFrequency frequency)
          Setter to update the value of the frequency property.
 

Constructors in com.ail.financial with parameters of type FinancialFrequency
MoneyProvision(int number, CurrencyAmount amount, FinancialFrequency frequency, PaymentMethod paymentMethod, java.util.Date paymentsStartDate, java.util.Date paymentsEndDate, java.lang.String description)