public enum CycleType extends Enum<CycleType>
You can use PolicyFilters to make behaviour more specific.
| Enum Constant and Description |
|---|
ANNUALLY |
BIMONTHLY |
BIWEEKLY |
DAILY |
MONTHLY |
QUARTERLY |
SEMIANNUALLY |
SEMIMONTHLY |
WEEKLY |
| Modifier and Type | Method and Description |
|---|---|
static CycleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CycleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CycleType DAILY
public static final CycleType WEEKLY
public static final CycleType BIWEEKLY
public static final CycleType SEMIMONTHLY
public static final CycleType MONTHLY
public static final CycleType BIMONTHLY
public static final CycleType QUARTERLY
public static final CycleType SEMIANNUALLY
public static final CycleType ANNUALLY
public static CycleType[] values()
for (CycleType c : CycleType.values()) System.out.println(c);
public static CycleType 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 © 2017. All rights reserved.