public static enum ServiceModel.DayOfWeekType extends Enum<ServiceModel.DayOfWeekType>
| Enum Constant and Description |
|---|
FRIDAY |
MONDAY |
SATURDAY |
SUNDAY |
THURSDAY |
TUESDAY |
WEDNESDAY |
| Modifier and Type | Method and Description |
|---|---|
static ServiceModel.DayOfWeekType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceModel.DayOfWeekType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceModel.DayOfWeekType MONDAY
public static final ServiceModel.DayOfWeekType TUESDAY
public static final ServiceModel.DayOfWeekType WEDNESDAY
public static final ServiceModel.DayOfWeekType THURSDAY
public static final ServiceModel.DayOfWeekType FRIDAY
public static final ServiceModel.DayOfWeekType SATURDAY
public static final ServiceModel.DayOfWeekType SUNDAY
public static ServiceModel.DayOfWeekType[] values()
for (ServiceModel.DayOfWeekType c : ServiceModel.DayOfWeekType.values()) System.out.println(c);
public static ServiceModel.DayOfWeekType 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 © 2022. All rights reserved.