public enum FrequencyCodeBO extends Enum<FrequencyCodeBO>
| Enum Constant and Description |
|---|
ANNUAL |
DAILY |
EVERYTWOMONTHS |
EVERYTWOWEEKS |
MONTHLY |
QUARTERLY |
SEMIANNUAL |
WEEKLY |
| Modifier and Type | Method and Description |
|---|---|
static FrequencyCodeBO |
fromValue(String text) |
String |
toString() |
static FrequencyCodeBO |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrequencyCodeBO[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrequencyCodeBO DAILY
public static final FrequencyCodeBO WEEKLY
public static final FrequencyCodeBO EVERYTWOWEEKS
public static final FrequencyCodeBO MONTHLY
public static final FrequencyCodeBO EVERYTWOMONTHS
public static final FrequencyCodeBO QUARTERLY
public static final FrequencyCodeBO SEMIANNUAL
public static final FrequencyCodeBO ANNUAL
public static FrequencyCodeBO[] values()
for (FrequencyCodeBO c : FrequencyCodeBO.values()) System.out.println(c);
public static FrequencyCodeBO 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 nullpublic static FrequencyCodeBO fromValue(String text)
public String toString()
toString in class Enum<FrequencyCodeBO>Copyright © 2019. All rights reserved.