public enum EventRecurrenceType extends Enum<EventRecurrenceType>
| Enum Constant and Description |
|---|
CUSTOM |
DAILY |
MONTHLY |
WEEK_DAYS |
WEEKLY |
YEARLY |
| Modifier and Type | Method and Description |
|---|---|
static EventRecurrenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventRecurrenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventRecurrenceType CUSTOM
public static final EventRecurrenceType DAILY
public static final EventRecurrenceType WEEKLY
public static final EventRecurrenceType WEEK_DAYS
public static final EventRecurrenceType MONTHLY
public static final EventRecurrenceType YEARLY
public static EventRecurrenceType[] values()
for (EventRecurrenceType c : EventRecurrenceType.values()) System.out.println(c);
public static EventRecurrenceType 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 © 2003–2021 eXo Platform SAS. All rights reserved.