public enum RecurringInterval extends java.lang.Enum<RecurringInterval>
| Enum Constant and Description |
|---|
Biweekly
Indicates a scheduled item recurs bi-weekly.
|
Monthly
Indicates a scheduled item recurs monthly.
|
Weekly
Indicates a scheduled item recurs weekly.
|
Yearly
Indicates a scheduled item recurs yearly.
|
| Modifier and Type | Method and Description |
|---|---|
static RecurringInterval |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecurringInterval[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecurringInterval Weekly
public static final RecurringInterval Biweekly
public static final RecurringInterval Monthly
public static final RecurringInterval Yearly
public static RecurringInterval[] values()
for (RecurringInterval c : RecurringInterval.values()) System.out.println(c);
public static RecurringInterval valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null