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