Package oracle.as.scheduler
Enum Class RecurrenceFields.WEEK_OF_MONTH
- All Implemented Interfaces:
Serializable
,Comparable<RecurrenceFields.WEEK_OF_MONTH>
,java.lang.constant.Constable
- Enclosing class:
- RecurrenceFields
Enum for the week of a month.
The validity of the week number for a given month depends upon the month. For example February does not have a 5th week.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionEnterprise Manager support to acquire a localized string value.int
value()
The numeric value associated with this enum constant.valueOf
(int value) The WEEK_OF_MONTH associated with the given value.Returns the enum constant of this class with the specified name.static RecurrenceFields.WEEK_OF_MONTH[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
FIRST
The first week of a month. -
SECOND
The second week of a month. -
THIRD
The third week of a month. -
FOURTH
The fourth week of a month. -
FIFTH
The fifth week of a month. This may not be a valid week number for certain months. -
SIXTH
The sixth week of a month. This may not be a valid week number for certain months. -
LAST
The last week of a month. This can be used to indicate the last week irrespective of the absolute number for the week in a given month.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public int value()The numeric value associated with this enum constant.- Returns:
- an integer representing this enum constant.
-
valueOf
The WEEK_OF_MONTH associated with the given value.- Parameters:
value
- the value to be converted into WEEK_OF_MONTH.- Returns:
- the WEEK_OF_MONTH enum constant corresponding to the value.
- Throws:
IllegalArgumentException
- if the specified value is not a valid value.
-
toString
Enterprise Manager support to acquire a localized string value.- Parameters:
locale
- the desired locale.- Returns:
- the localized string
-