Skip navigation links

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

E17060-02


oracle.odi.domain.runtime.loadplan
Enum OdiLoadPlanStep.RegenerationMode

java.lang.Object
  extended by java.lang.Enum<OdiLoadPlanStep.RegenerationMode>
      extended by oracle.odi.domain.runtime.loadplan.OdiLoadPlanStep.RegenerationMode

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OdiLoadPlanStep.RegenerationMode>
Enclosing class:
OdiLoadPlanStep

public static enum OdiLoadPlanStep.RegenerationMode
extends java.lang.Enum<OdiLoadPlanStep.RegenerationMode>

Defines the regeneration modes of a step


Enum Constant Summary
GENERATE_NEW_VERSIONS_OF_SCENARIOS
          All scenarios used in this step and and in the children steps will be regenerated as a new version and steps will use the version of scenario newly created.
OVERWRITE_EXISTING_SCENARIOS
          All scenarios used in this step and and in the children steps will be regenerated and overwrite the current scenario.

 

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

OVERWRITE_EXISTING_SCENARIOS

public static final OdiLoadPlanStep.RegenerationMode OVERWRITE_EXISTING_SCENARIOS
All scenarios used in this step and and in the children steps will be regenerated and overwrite the current scenario.

GENERATE_NEW_VERSIONS_OF_SCENARIOS

public static final OdiLoadPlanStep.RegenerationMode GENERATE_NEW_VERSIONS_OF_SCENARIOS
All scenarios used in this step and and in the children steps will be regenerated as a new version and steps will use the version of scenario newly created.

Method Detail

values

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

valueOf

public static OdiLoadPlanStep.RegenerationMode 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.