public enum DailyRecurrence extends java.lang.Enum<DailyRecurrence>
Enum Constant and Description |
---|
ByDayInterval
Repeats the item after every number of days specified
in the
Recurrence.getDays() property. |
EveryWeekend
Repeats the item each Saturday and Sunday.
|
EveryWorkday
Repeats the item each workday, Monday through Friday.
|
Modifier and Type | Method and Description |
---|---|
static DailyRecurrence |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DailyRecurrence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DailyRecurrence ByDayInterval
Recurrence.getDays()
property.public static final DailyRecurrence EveryWorkday
public static final DailyRecurrence EveryWeekend
public static DailyRecurrence[] values()
for (DailyRecurrence c : DailyRecurrence.values()) System.out.println(c);
public static DailyRecurrence 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