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