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