Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Enterprise Scheduler Service
11g Release 1 (11.1.1.6.3)
E26229-05


oracle.as.scheduler
Enum RecurrenceFields.FREQUENCY

java.lang.Object
  extended by java.lang.Enum<RecurrenceFields.FREQUENCY>
      extended by oracle.as.scheduler.RecurrenceFields.FREQUENCY

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RecurrenceFields.FREQUENCY>
Enclosing class:
RecurrenceFields

public static enum RecurrenceFields.FREQUENCY
extends java.lang.Enum<RecurrenceFields.FREQUENCY>

Defines the main repeat frequency of a Recurrence.


Enum Constant Summary
DAILY
          Indicates every day repetition.
HOURLY
          Indicates every hour repetition.
MINUTELY
          Indicates every minute repetition.
MONTHLY
          Indicates every month repetition.
SECONDLY
          Indicates every second repetition.
WEEKLY
          Indicates every week repetition.
YEARLY
          Indicates every year repetition.

 

Method Summary
 java.lang.String toString(java.util.Locale locale)
           
static RecurrenceFields.FREQUENCY valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RecurrenceFields.FREQUENCY[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.

 

Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

 

Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

 

Enum Constant Detail

SECONDLY

public static final RecurrenceFields.FREQUENCY SECONDLY
Indicates every second repetition.

MINUTELY

public static final RecurrenceFields.FREQUENCY MINUTELY
Indicates every minute repetition.

HOURLY

public static final RecurrenceFields.FREQUENCY HOURLY
Indicates every hour repetition.

DAILY

public static final RecurrenceFields.FREQUENCY DAILY
Indicates every day repetition.

WEEKLY

public static final RecurrenceFields.FREQUENCY WEEKLY
Indicates every week repetition.

MONTHLY

public static final RecurrenceFields.FREQUENCY MONTHLY
Indicates every month repetition.

YEARLY

public static final RecurrenceFields.FREQUENCY YEARLY
Indicates every year repetition.

Method Detail

values

public static RecurrenceFields.FREQUENCY[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (RecurrenceFields.FREQUENCY c : RecurrenceFields.FREQUENCY.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RecurrenceFields.FREQUENCY valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString(java.util.Locale locale)

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Enterprise Scheduler Service
11g Release 1 (11.1.1.6.3)
E26229-05


Copyright © 2008, 2012 Oracle. All rights reserved.