public enum CronWeekDay extends Enum<CronWeekDay>
| Modifier and Type | Method and Description |
|---|---|
static CronWeekDay |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CronWeekDay[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CronWeekDay SUN
public static final CronWeekDay MON
public static final CronWeekDay TUE
public static final CronWeekDay WED
public static final CronWeekDay THU
public static final CronWeekDay FRI
public static final CronWeekDay SAT
public static CronWeekDay[] values()
for (CronWeekDay c : CronWeekDay.values()) System.out.println(c);
public static CronWeekDay 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 © 2017–2019. All rights reserved.