public static final class RecurrenceFields.DAY_OF_WEEK extends Enum
Modifier and Type | Field and Description |
---|---|
static RecurrenceFields.DAY_OF_WEEK |
FRIDAY
Indicates Friday.
|
static RecurrenceFields.DAY_OF_WEEK |
MONDAY
Indicates Monday.
|
static RecurrenceFields.DAY_OF_WEEK |
SATURDAY
Indicates Saturday.
|
static RecurrenceFields.DAY_OF_WEEK |
SUNDAY
Indicates Sunday.
|
static RecurrenceFields.DAY_OF_WEEK |
THURSDAY
Indicates Thursday.
|
static RecurrenceFields.DAY_OF_WEEK |
TUESDAY
Indicates Tuesday.
|
static RecurrenceFields.DAY_OF_WEEK |
WEDNESDAY
Indicates Wednesday.
|
Modifier and Type | Method and Description |
---|---|
static RecurrenceFields.DAY_OF_WEEK |
getDayOfWeek(String name)
The DAY_OF_WEEK associated with the given value.
|
String |
toString()
The String representation of this enum constant.
|
String |
toString(Locale locale)
Enterprise Manager support to acquire a localized string value.
|
static RecurrenceFields.DAY_OF_WEEK |
valueOf(String name) |
static RecurrenceFields.DAY_OF_WEEK[] |
values() |
public static final RecurrenceFields.DAY_OF_WEEK MONDAY
public static final RecurrenceFields.DAY_OF_WEEK TUESDAY
public static final RecurrenceFields.DAY_OF_WEEK WEDNESDAY
public static final RecurrenceFields.DAY_OF_WEEK THURSDAY
public static final RecurrenceFields.DAY_OF_WEEK FRIDAY
public static final RecurrenceFields.DAY_OF_WEEK SATURDAY
public static final RecurrenceFields.DAY_OF_WEEK SUNDAY
public static RecurrenceFields.DAY_OF_WEEK[] values()
public static RecurrenceFields.DAY_OF_WEEK valueOf(String name)
public String toString()
public static RecurrenceFields.DAY_OF_WEEK getDayOfWeek(String name) throws IllegalArgumentException
name
- the name of the enum constant to be returned.
This should correspond to a value returned by toString()
.IllegalArgumentException
- if no enum constant exists
for the given name.