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