Skip navigation links

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

E17060-02


oracle.odi.domain.project
Enum OdiJKMLine.RepeatOrder

java.lang.Object
  extended by java.lang.Enum<OdiJKMLine.RepeatOrder>
      extended by oracle.odi.domain.project.OdiJKMLine.RepeatOrder

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OdiJKMLine.RepeatOrder>
Enclosing class:
OdiJKMLine

public static enum OdiJKMLine.RepeatOrder
extends java.lang.Enum<OdiJKMLine.RepeatOrder>

Defines if the command should be iterated for all the datastores when processing a CDC-related operation on a group of datastores (model or CDC set). Can be one of the following:

NONE: no order

ASCENDING: ascending order

DESCENDING: descending order


Enum Constant Summary
ASCENDING
          Execute for each of the journaled tables in ascending order.
DESCENDING
          Execute for each of the journaled tables in descending order.
NONE
          Do not execute fro the journaled tables.

 

Method Summary
static OdiJKMLine.RepeatOrder valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OdiJKMLine.RepeatOrder[] 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

NONE

public static final OdiJKMLine.RepeatOrder NONE
Do not execute fro the journaled tables.

ASCENDING

public static final OdiJKMLine.RepeatOrder ASCENDING
Execute for each of the journaled tables in ascending order.

DESCENDING

public static final OdiJKMLine.RepeatOrder DESCENDING
Execute for each of the journaled tables in descending order.

Method Detail

values

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

valueOf

public static OdiJKMLine.RepeatOrder 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.5.0)

E17060-02


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