public enum EventRecurrenceFrequency extends Enum<EventRecurrenceFrequency>
| Enum Constant and Description |
|---|
DAILY |
HOURLY |
MINUTELY |
MONTHLY |
SECONDLY |
WEEKLY |
YEARLY |
| Modifier and Type | Method and Description |
|---|---|
static EventRecurrenceFrequency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventRecurrenceFrequency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventRecurrenceFrequency YEARLY
public static final EventRecurrenceFrequency MONTHLY
public static final EventRecurrenceFrequency WEEKLY
public static final EventRecurrenceFrequency DAILY
public static final EventRecurrenceFrequency HOURLY
public static final EventRecurrenceFrequency MINUTELY
public static final EventRecurrenceFrequency SECONDLY
public static EventRecurrenceFrequency[] values()
for (EventRecurrenceFrequency c : EventRecurrenceFrequency.values()) System.out.println(c);
public static EventRecurrenceFrequency 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.