public static final class RecurrenceFields.WEEK_OF_MONTH extends Enum
The validity of the week number for a given month depends upon the month. For example February does not have a 5th week.
Modifier and Type | Field and Description |
---|---|
static RecurrenceFields.WEEK_OF_MONTH |
FIFTH
The fifth week of a month.
|
static RecurrenceFields.WEEK_OF_MONTH |
FIRST
The first week of a month.
|
static RecurrenceFields.WEEK_OF_MONTH |
FOURTH
The fourth week of a month.
|
static RecurrenceFields.WEEK_OF_MONTH |
LAST
The last week of a month.
|
static RecurrenceFields.WEEK_OF_MONTH |
SECOND
The second week of a month.
|
static RecurrenceFields.WEEK_OF_MONTH |
SIXTH
The sixth week of a month.
|
static RecurrenceFields.WEEK_OF_MONTH |
THIRD
The third week of a month.
|
Modifier and Type | Method and Description |
---|---|
String |
toString(Locale locale)
Enterprise Manager support to acquire a localized string value.
|
int |
value()
The numeric value associated with this enum constant.
|
static RecurrenceFields.WEEK_OF_MONTH |
valueOf(int value)
The WEEK_OF_MONTH associated with the given value.
|
static RecurrenceFields.WEEK_OF_MONTH |
valueOf(String name) |
static RecurrenceFields.WEEK_OF_MONTH[] |
values() |
public static final RecurrenceFields.WEEK_OF_MONTH FIRST
public static final RecurrenceFields.WEEK_OF_MONTH SECOND
public static final RecurrenceFields.WEEK_OF_MONTH THIRD
public static final RecurrenceFields.WEEK_OF_MONTH FOURTH
public static final RecurrenceFields.WEEK_OF_MONTH FIFTH
public static final RecurrenceFields.WEEK_OF_MONTH SIXTH
public static final RecurrenceFields.WEEK_OF_MONTH LAST
public static RecurrenceFields.WEEK_OF_MONTH[] values()
public static RecurrenceFields.WEEK_OF_MONTH valueOf(String name)
public int value()
public static RecurrenceFields.WEEK_OF_MONTH valueOf(int value) throws IllegalArgumentException
value
- the value to be converted into WEEK_OF_MONTH.IllegalArgumentException
- if the specified value is not
a valid value.