public enum IMMPeriod extends Enum<IMMPeriod>
| Enum Constant and Description |
|---|
ANNUALLY
Annually, jump from 1 year to the next
|
BI_ANNUALY_JUN_DEC
Bi-annually June and December
|
BI_ANNUALY_MAR_SEP
Bi-annually March and September
|
QUARTERLY
Conventional period: Quarterly: eg March, June, September, December
|
| Modifier and Type | Method and Description |
|---|---|
static IMMPeriod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IMMPeriod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IMMPeriod BI_ANNUALY_MAR_SEP
public static final IMMPeriod BI_ANNUALY_JUN_DEC
public static final IMMPeriod QUARTERLY
public static final IMMPeriod ANNUALLY
public static IMMPeriod[] values()
for (IMMPeriod c : IMMPeriod.values()) System.out.println(c);
public static IMMPeriod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2006–2022 Appendium - Portfolio Financing Platform. All rights reserved.