|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RecurringInterval>
caltool.schedule.RecurringInterval
public enum RecurringInterval
Class RecuringInterval specifies the granularity at which recurring items are defined. Weekly and Biweekly settings allow the user to specify recurrence on one or more days of the week. The Monthly setting allows the user to specify recurrence on one or more days in one or more weeks of each month. The Yearly setting allows the user to specify recurrence on one or more specific dates in the year.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RecurringInterval Weekly
public static final RecurringInterval Biweekly
public static final RecurringInterval Monthly
public static final RecurringInterval Yearly
Method Detail |
---|
public static final 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 name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |