Package oracle.as.scheduler
Enum Class RecurrenceFields.DAY_OF_WEEK
- All Implemented Interfaces:
Serializable
,Comparable<RecurrenceFields.DAY_OF_WEEK>
,java.lang.constant.Constable
- Enclosing class:
- RecurrenceFields
Enum for the days of a 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 TypeMethodDescriptionstatic RecurrenceFields.DAY_OF_WEEK
getDayOfWeek
(String name) The DAY_OF_WEEK associated with the given value.toString()
The String representation of this enum constant.Enterprise Manager support to acquire a localized string value.static RecurrenceFields.DAY_OF_WEEK
Returns the enum constant of this class with the specified name.static RecurrenceFields.DAY_OF_WEEK[]
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, valueOf
-
Enum Constant Details
-
MONDAY
Indicates Monday. -
TUESDAY
Indicates Tuesday. -
WEDNESDAY
Indicates Wednesday. -
THURSDAY
Indicates Thursday. -
FRIDAY
Indicates Friday. -
SATURDAY
Indicates Saturday. -
SUNDAY
Indicates Sunday.
-
-
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
-
toString
The String representation of this enum constant.- Overrides:
toString
in classEnum<RecurrenceFields.DAY_OF_WEEK>
- Returns:
- String the string representing this enum constant.
-
getDayOfWeek
public static RecurrenceFields.DAY_OF_WEEK getDayOfWeek(String name) throws IllegalArgumentException The DAY_OF_WEEK associated with the given value.- Parameters:
name
- the name of the enum constant to be returned. This should correspond to a value returned bytoString()
.- Returns:
- the enum constant.
- Throws:
IllegalArgumentException
- if no enum constant exists for the given name.
-
toString
Enterprise Manager support to acquire a localized string value.- Parameters:
locale
- the desired locale.- Returns:
- the localized string
-