public enum CycleTO extends Enum<CycleTO>
| Enum Constant and Description |
|---|
HALF_YEARLY
every 6 months.
|
INVALID |
MONTHLY
every month.
|
QUARTERLY
every 3 months.
|
TWO_MONTHLY
every 2nd month.
|
TWO_WEEKLY
every 2nd week.
|
WEEKLY
every week
|
YEARLY
every 12 months.
|
| Modifier and Type | Method and Description |
|---|---|
static CycleTO |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CycleTO[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CycleTO WEEKLY
public static final CycleTO TWO_WEEKLY
public static final CycleTO MONTHLY
public static final CycleTO TWO_MONTHLY
public static final CycleTO QUARTERLY
public static final CycleTO HALF_YEARLY
public static final CycleTO YEARLY
public static final CycleTO INVALID
public static CycleTO[] values()
for (CycleTO c : CycleTO.values()) System.out.println(c);
public static CycleTO 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.