Skip navigation links

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

E17060-04


oracle.odi.domain.runtime.step
Enum StepType

java.lang.Object
  extended by java.lang.Enum<StepType>
      extended by oracle.odi.domain.runtime.step.StepType

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StepType>

public enum StepType
extends java.lang.Enum<StepType>

Type of a step. Can be one of the following:

Since:
11.1.1.3.0

Enum Constant Summary
CDC_DATASTORE
          Journalize Datastore step type.
CDC_MODEL
          Journalize Model step type.
CDC_SUB_MODEL
          Journalize Sub-Model step type.
CONTROL_DATASTORE
          Check Datastore step type.
CONTROL_MODEL
          Check Model step type.
CONTROL_SUB_MODEL
          Check Sub-Model step type.
DECLARE_VARIABLE
          Declare Variable step type.
EVALUATE_VARIBALE
          Evaluate Variable step type.
INTERFACE
          Interface step type.
ODI_COMMAND
          Oracle Data Integrator Command step type.
ON_CONNECT
          On connect step.
ON_DISCONNECT
          On disconnect step.
OS_COMMAND
          Operating System Command step type.
POPULATE_VARIABLE
          Populate Variable step type.
REFRESH_VARIABLE
          Refresh Variable step type.
REVERSE_DATASTORE
          Datastore Reverse-engineering step type.
REVERSE_MODEL
          Model Reverse-engineering step type.
REVERSE_SUB_MODEL
          Sub-Model Reverse-engineering step type.
SET_VARIABLE
          Set Variable step type.
USER_PROCEDURE
          Procedure step type.

 

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

INTERFACE

public static final StepType INTERFACE
Interface step type.

DECLARE_VARIABLE

public static final StepType DECLARE_VARIABLE
Declare Variable step type.

SET_VARIABLE

public static final StepType SET_VARIABLE
Set Variable step type.

EVALUATE_VARIBALE

public static final StepType EVALUATE_VARIBALE
Evaluate Variable step type.

POPULATE_VARIABLE

public static final StepType POPULATE_VARIABLE
Populate Variable step type.

REFRESH_VARIABLE

public static final StepType REFRESH_VARIABLE
Refresh Variable step type.

USER_PROCEDURE

public static final StepType USER_PROCEDURE
Procedure step type.

OS_COMMAND

public static final StepType OS_COMMAND
Operating System Command step type.

ODI_COMMAND

public static final StepType ODI_COMMAND
Oracle Data Integrator Command step type.

REVERSE_MODEL

public static final StepType REVERSE_MODEL
Model Reverse-engineering step type.

REVERSE_SUB_MODEL

public static final StepType REVERSE_SUB_MODEL
Sub-Model Reverse-engineering step type.

REVERSE_DATASTORE

public static final StepType REVERSE_DATASTORE
Datastore Reverse-engineering step type.

CONTROL_MODEL

public static final StepType CONTROL_MODEL
Check Model step type.

CONTROL_SUB_MODEL

public static final StepType CONTROL_SUB_MODEL
Check Sub-Model step type.

CONTROL_DATASTORE

public static final StepType CONTROL_DATASTORE
Check Datastore step type.

CDC_MODEL

public static final StepType CDC_MODEL
Journalize Model step type.

CDC_SUB_MODEL

public static final StepType CDC_SUB_MODEL
Journalize Sub-Model step type.

CDC_DATASTORE

public static final StepType CDC_DATASTORE
Journalize Datastore step type.

ON_CONNECT

public static final StepType ON_CONNECT
On connect step.

ON_DISCONNECT

public static final StepType ON_DISCONNECT
On disconnect step.

Method Detail

values

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

valueOf

public static StepType 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.