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