public enum RecurrenceType extends java.lang.Enum<RecurrenceType>
| Enum Constant and Description |
|---|
DAILY
Represents a daily recurrence pattern.
|
MONTH_NTH
Represents a MonthNth recurrence pattern.
|
MONTHLY
Represents a monthly recurrence pattern.
|
NONE
None.
|
WEEKLY
Represents a weekly recurrence pattern.
|
YEAR_NTH
Represents a YearNth recurrence pattern.
|
YEARLY
Represents a yearly recurrence pattern.
|
| Modifier and Type | Method and Description |
|---|---|
static RecurrenceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecurrenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecurrenceType DAILY
public static final RecurrenceType WEEKLY
public static final RecurrenceType MONTHLY
public static final RecurrenceType MONTH_NTH
public static final RecurrenceType YEARLY
public static final RecurrenceType YEAR_NTH
public static final RecurrenceType NONE
public static RecurrenceType[] values()
for (RecurrenceType c : RecurrenceType.values()) System.out.println(c);
public static RecurrenceType 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