public static enum VacuumTimer.DayOfWeek extends java.lang.Enum<VacuumTimer.DayOfWeek>
| Enum Constant | Description |
|---|---|
FRIDAY |
|
MONDAY |
|
SATURDAY |
|
SUNDAY |
|
THURSDAY |
|
TUESDAY |
|
WEDNESDAY |
| Modifier and Type | Method | Description |
|---|---|---|
int |
getValue() |
|
static VacuumTimer.DayOfWeek |
valueOf(int number) |
Returns the enum constant of this type with the specified name.
|
static VacuumTimer.DayOfWeek |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static VacuumTimer.DayOfWeek[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VacuumTimer.DayOfWeek SUNDAY
public static final VacuumTimer.DayOfWeek MONDAY
public static final VacuumTimer.DayOfWeek TUESDAY
public static final VacuumTimer.DayOfWeek WEDNESDAY
public static final VacuumTimer.DayOfWeek THURSDAY
public static final VacuumTimer.DayOfWeek FRIDAY
public static final VacuumTimer.DayOfWeek SATURDAY
public static VacuumTimer.DayOfWeek[] values()
for (VacuumTimer.DayOfWeek c : VacuumTimer.DayOfWeek.values()) System.out.println(c);
public static VacuumTimer.DayOfWeek valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static VacuumTimer.DayOfWeek valueOf(int number)
number - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
Copyright © 2018. All rights reserved.