Package oracle.as.scheduler
Enum Class RecurrenceFields.FREQUENCY
- All Implemented Interfaces:
Serializable
,Comparable<RecurrenceFields.FREQUENCY>
,java.lang.constant.Constable
- Enclosing class:
- RecurrenceFields
Enum for the main repeat frequency of a Recurrence.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates every day repetition.Indicates every hour repetition.Indicates every minute repetition.Indicates every month repetition.Indicates every second repetition.Indicates every week repetition.Indicates every year repetition. -
Method Summary
Modifier and TypeMethodDescriptionEnterprise Manager support to acquire a localized string value.static RecurrenceFields.FREQUENCY
Returns the enum constant of this class with the specified name.static RecurrenceFields.FREQUENCY[]
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
-
SECONDLY
Indicates every second repetition. -
MINUTELY
Indicates every minute repetition. -
HOURLY
Indicates every hour repetition. -
DAILY
Indicates every day repetition. -
WEEKLY
Indicates every week repetition. -
MONTHLY
Indicates every month repetition. -
YEARLY
Indicates every year repetition.
-
-
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
Enterprise Manager support to acquire a localized string value.- Parameters:
locale
- the desired locale.- Returns:
- the localized string
-