Skip navigation links

Oracle® Data Integrator Java API Reference
11g Release 1 (11.1.1.7.0)

E17060-04


oracle.odi.domain.runtime.scheduling
Enum RecurrenceAttributes.DayOfWeekRank

java.lang.Object
  extended by java.lang.Enum<RecurrenceAttributes.DayOfWeekRank>
      extended by oracle.odi.domain.runtime.scheduling.RecurrenceAttributes.DayOfWeekRank

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RecurrenceAttributes.DayOfWeekRank>
Enclosing class:
RecurrenceAttributes

public static enum RecurrenceAttributes.DayOfWeekRank
extends java.lang.Enum<RecurrenceAttributes.DayOfWeekRank>

Enumeration for the rank of the week day in month.

Since:
11.1.1.6.0

Enum Constant Summary
FIFTH
          Constant indicating the fifth occurrence of the week day in a month.
FIRST
          Constant indicating the first occurrence of the week day in a month.
FOURTH
          Constant indicating the forth occurrence of the week day in a month.
LAST
          Constant indicating the last occurrence of the week day in a month.
SECOND
          Constant indicating the second occurrence of the week day in a month.
SECOND_LAST
          Constant indicating the second-last occurrence of the week day in a month.
THIRD
          Constant indicating the third occurrence of the week day in a month.
THIRD_LAST
          Constant indicating the third-last occurrence of the week day in a month.

 

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

 

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

 

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

 

Enum Constant Detail

FIRST

public static final RecurrenceAttributes.DayOfWeekRank FIRST
Constant indicating the first occurrence of the week day in a month.

SECOND

public static final RecurrenceAttributes.DayOfWeekRank SECOND
Constant indicating the second occurrence of the week day in a month.

THIRD

public static final RecurrenceAttributes.DayOfWeekRank THIRD
Constant indicating the third occurrence of the week day in a month.

FOURTH

public static final RecurrenceAttributes.DayOfWeekRank FOURTH
Constant indicating the forth occurrence of the week day in a month.

FIFTH

public static final RecurrenceAttributes.DayOfWeekRank FIFTH
Constant indicating the fifth occurrence of the week day in a month.

LAST

public static final RecurrenceAttributes.DayOfWeekRank LAST
Constant indicating the last occurrence of the week day in a month.

SECOND_LAST

public static final RecurrenceAttributes.DayOfWeekRank SECOND_LAST
Constant indicating the second-last occurrence of the week day in a month.

THIRD_LAST

public static final RecurrenceAttributes.DayOfWeekRank THIRD_LAST
Constant indicating the third-last occurrence of the week day in a month.

Method Detail

values

public static RecurrenceAttributes.DayOfWeekRank[] 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 (RecurrenceAttributes.DayOfWeekRank c : RecurrenceAttributes.DayOfWeekRank.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RecurrenceAttributes.DayOfWeekRank 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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

Skip navigation links

Oracle® Data Integrator Java API Reference
11g Release 1 (11.1.1.7.0)

E17060-04


Copyright © 2010, 2013, Oracle and/or its affiliates. All rights reserved.