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