|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<FinancialFrequency>
com.ail.financial.FinancialFrequency
public enum FinancialFrequency
Type safe enumeration representing constant values for FinancialFrequency.
| Enum Constant Summary | |
|---|---|
BIMONTHLY
Period of time |
|
BIWEEKLY
Perdion of time |
|
MONTHLY
Period of time |
|
ONE_TIME
Once and once only. |
|
QUARTERLY
Period of time |
|
SEMESTERLY
Every half year |
|
UNDEFINED
Undefined |
|
WEEKLY
Period of time |
|
YEARLY
Period of time |
|
| Method Summary | |
|---|---|
static 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. |
java.lang.String |
getLongName()
Returns the same value as longName(). |
java.lang.String |
getName()
Returns the same value as name(). |
int |
getOrdinal()
Return this Enum's ordinal id. |
java.lang.String |
longName()
The long name for an enum. |
static FinancialFrequency |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FinancialFrequency[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
java.lang.String |
valuesAsCsv()
|
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface com.ail.core.TypeEnum |
|---|
name |
| Enum Constant Detail |
|---|
public static final FinancialFrequency UNDEFINED
public static final FinancialFrequency WEEKLY
public static final FinancialFrequency BIWEEKLY
public static final FinancialFrequency MONTHLY
public static final FinancialFrequency BIMONTHLY
public static final FinancialFrequency QUARTERLY
public static final FinancialFrequency SEMESTERLY
public static final FinancialFrequency YEARLY
public static final FinancialFrequency ONE_TIME
| Method Detail |
|---|
public static final FinancialFrequency[] values()
for(FinancialFrequency c : FinancialFrequency.values())
System.out.println(c);
public static FinancialFrequency valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namepublic java.lang.String getLongName()
TypeEnum
getLongName in interface TypeEnumpublic java.lang.String valuesAsCsv()
public java.lang.String longName()
TypeEnum
longName in interface TypeEnumpublic static FinancialFrequency forName(java.lang.String name)
name - The name to lookup
public java.lang.String getName()
TypeEnum
getName in interface TypeEnumpublic int getOrdinal()
TypeEnum
getOrdinal in interface TypeEnum
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||