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

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

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

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

Defines the months of the year.

Since:
11.1.1.6.0

Enum Constant Summary
APRIL
          Enumeration constant indicating the month of April.
AUGUST
          Enumeration constant indicating the month of August.
DECEMBER
          Enumeration constant indicating the month of December.
FEBRUARY
          Enumeration constant indicating the month of February.
JANUARY
          Enumeration constant indicating the month of January.
JULY
          Enumeration constant indicating the month of July.
JUNE
          Enumeration constant indicating the month of June.
MARCH
          Enumeration constant indicating the month of March.
MAY
          Enumeration constant indicating the month of May.
NOVEMBER
          Enumeration constant indicating the month of November.
OCTOBER
          Enumeration constant indicating the month of October.
SEPTEMBER
          Enumeration constant indicating the month of September.

 

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

JANUARY

public static final RecurrenceAttributes.MonthOfYear JANUARY
Enumeration constant indicating the month of January.

FEBRUARY

public static final RecurrenceAttributes.MonthOfYear FEBRUARY
Enumeration constant indicating the month of February.

MARCH

public static final RecurrenceAttributes.MonthOfYear MARCH
Enumeration constant indicating the month of March.

APRIL

public static final RecurrenceAttributes.MonthOfYear APRIL
Enumeration constant indicating the month of April.

MAY

public static final RecurrenceAttributes.MonthOfYear MAY
Enumeration constant indicating the month of May.

JUNE

public static final RecurrenceAttributes.MonthOfYear JUNE
Enumeration constant indicating the month of June.

JULY

public static final RecurrenceAttributes.MonthOfYear JULY
Enumeration constant indicating the month of July.

AUGUST

public static final RecurrenceAttributes.MonthOfYear AUGUST
Enumeration constant indicating the month of August.

SEPTEMBER

public static final RecurrenceAttributes.MonthOfYear SEPTEMBER
Enumeration constant indicating the month of September.

OCTOBER

public static final RecurrenceAttributes.MonthOfYear OCTOBER
Enumeration constant indicating the month of October.

NOVEMBER

public static final RecurrenceAttributes.MonthOfYear NOVEMBER
Enumeration constant indicating the month of November.

DECEMBER

public static final RecurrenceAttributes.MonthOfYear DECEMBER
Enumeration constant indicating the month of December.

Method Detail

values

public static RecurrenceAttributes.MonthOfYear[] 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.MonthOfYear c : RecurrenceAttributes.MonthOfYear.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.MonthOfYear 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.MonthOfYear valueOf(int pValue)
Method to retrieve the MonthOfYear corresponding to a given integer value.
Parameters:
pValue - the value to be converted into MonthOfYear
Returns:
MonthOfYear 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.