Package oracle.as.scheduler
Class RecurrenceFields.DAY_OF_MONTH
java.lang.Object
oracle.as.scheduler.RecurrenceFields.DAY_OF_MONTH
- All Implemented Interfaces:
Serializable
- Enclosing class:
- RecurrenceFields
Class that defines the day of a month.
DAY_OF_MONTH
is a wrapper class that uses an integer to
represent a day of the month with required restrictions on the
value of integer.
In general the allowed values for the day of a month are 1 to 31 and -1. A value of -1 indicates the last day of the month. Zero (0) is not a valid value.
The validity of the values are month dependent such as a value of 30 is not valid for the month of February.
An DAY_OF_MONTH
instance can be obtained via the
valueOf(int)
method.
- See Also:
-
Field Details
-
MAX_VALUE
public static final int MAX_VALUE- See Also:
-
MIN_VALUE
public static final int MIN_VALUE- See Also:
-
-
Method Details
-
valueOf
The DAY_OF_MONTH associated with the given integer.The integer value passed in must be a valid integer allowed by DAY_OF_MONTH. Allowed values are -1, and 1 to 31.
- Parameters:
value
- the integer value to be converted to DAY_OF_MONTH.- Returns:
- an instance of DAY_OF_MONTH representing the day specified by the value.
- Throws:
IllegalArgumentException
- if the value is not a valid integer value.
-
value
public int value()The value of this DAY_OF_MONTH as integer.- Returns:
- the value of this DAY_OF_MONTH.
-