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.DayOfWeek

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

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

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

Enumeration for the days of a week.

Since:
11.1.1.6.0

Enum Constant Summary
FRIDAY
          Enumeration constant indicating Friday.
MONDAY
          Enumeration constant indicating Monday.
SATURDAY
          Enumeration constant indicating Saturday.
SUNDAY
          Enumeration constant indicating Sunday.
THURSDAY
          Enumeration constant indicating Thursday.
TUESDAY
          Enumeration constant indicating Tuesday.
WEDNESDAY
          Enumeration constant indicating Wednesday.

 

Method Summary
 int getValue()
          Returns the 1-based integer representation of this enum constant.
static RecurrenceAttributes.DayOfWeek valueOf(int value)
          Method to retrieve the DayOfWeek corresponding to a given integer value.
static RecurrenceAttributes.DayOfWeek valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RecurrenceAttributes.DayOfWeek[] 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

SUNDAY

public static final RecurrenceAttributes.DayOfWeek SUNDAY
Enumeration constant indicating Sunday.

MONDAY

public static final RecurrenceAttributes.DayOfWeek MONDAY
Enumeration constant indicating Monday.

TUESDAY

public static final RecurrenceAttributes.DayOfWeek TUESDAY
Enumeration constant indicating Tuesday.

WEDNESDAY

public static final RecurrenceAttributes.DayOfWeek WEDNESDAY
Enumeration constant indicating Wednesday.

THURSDAY

public static final RecurrenceAttributes.DayOfWeek THURSDAY
Enumeration constant indicating Thursday.

FRIDAY

public static final RecurrenceAttributes.DayOfWeek FRIDAY
Enumeration constant indicating Friday.

SATURDAY

public static final RecurrenceAttributes.DayOfWeek SATURDAY
Enumeration constant indicating Saturday.

Method Detail

values

public static RecurrenceAttributes.DayOfWeek[] 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.DayOfWeek c : RecurrenceAttributes.DayOfWeek.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.DayOfWeek 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

getValue

public int getValue()
Returns the 1-based integer representation of this enum constant.
Returns:
integer representation of this enum constant

valueOf

public static RecurrenceAttributes.DayOfWeek valueOf(int value)
Method to retrieve the DayOfWeek corresponding to a given integer value.
Parameters:
pValue - the value to be converted into DayOfWeek
Returns:
DayOfWeek enum constant corresponding to the value
Throws:
DomainRuntimeException - if no enum constant is defined for the given value

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.