public static enum Schedule.Days extends Enum<Schedule.Days>
| Modifier and Type | Method and Description |
|---|---|
static Schedule.Days |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Schedule.Days[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Schedule.Days MO
public static final Schedule.Days TU
public static final Schedule.Days WE
public static final Schedule.Days TH
public static final Schedule.Days FR
public static final Schedule.Days SA
public static final Schedule.Days SU
public static final Schedule.Days PH
public static final Schedule.Days SH
public static Schedule.Days[] values()
for (Schedule.Days c : Schedule.Days.values()) System.out.println(c);
public static Schedule.Days 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 © 2019. All rights reserved.