Skip navigation links

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

E17060-04


oracle.odi.domain.model
Enum OdiModel.ReverseType

java.lang.Object
  extended by java.lang.Enum<OdiModel.ReverseType>
      extended by oracle.odi.domain.model.OdiModel.ReverseType

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OdiModel.ReverseType>
Enclosing class:
OdiModel

public static enum OdiModel.ReverseType
extends java.lang.Enum<OdiModel.ReverseType>

Defines the type of reverse engineering.


Enum Constant Summary
CUSTOMIZED
          Uses a procedure, the Reverse Knowledge Module (RKM), to extract the metadata for a specific type of application and to store them in the Repository.
STANDARD
          Uses the capacities of the driver (JDBC, ODBC, etc.) to retrieve the metadata and store them in the Repository.

 

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

STANDARD

public static final OdiModel.ReverseType STANDARD
Uses the capacities of the driver (JDBC, ODBC, etc.) to retrieve the metadata and store them in the Repository.

CUSTOMIZED

public static final OdiModel.ReverseType CUSTOMIZED
Uses a procedure, the Reverse Knowledge Module (RKM), to extract the metadata for a specific type of application and to store them in the Repository.

Method Detail

values

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

valueOf

public static OdiModel.ReverseType 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.