Package oracle.as.scheduler
Enum Class RecurrenceFields.MONTH_OF_YEAR
- All Implemented Interfaces:
Serializable
,Comparable<RecurrenceFields.MONTH_OF_YEAR>
,java.lang.constant.Constable
- Enclosing class:
- RecurrenceFields
Enum for the months of the year.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe month of April.The month of August.The month of December.The month of February.The month of January.The month of July.The month of June.The month of March.The month of May.The month of November.The month of October.The month of September. -
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) Gets the MONTH_OF_YEAR associated with the given value.Returns the enum constant of this class with the specified name.static RecurrenceFields.MONTH_OF_YEAR[]
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
-
JANUARY
The month of January. -
FEBRUARY
The month of February. -
MARCH
The month of March. -
APRIL
The month of April. -
MAY
The month of May. -
JUNE
The month of June. -
JULY
The month of July. -
AUGUST
The month of August. -
SEPTEMBER
The month of September. -
OCTOBER
The month of October. -
NOVEMBER
The month of November. -
DECEMBER
The month of December.
-
-
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
Gets the MONTH_OF_YEAR associated with the given value.- Parameters:
value
- the value to be converted into MONTH_OF_YEAR.- Returns:
- MONTH_OF_YEAR 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
-