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