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

E17060-01

oracle.odi.domain.model
Enum OdiReference.ReferenceType

java.lang.Object
  extended by java.lang.Enum<OdiReference.ReferenceType>
      extended by oracle.odi.domain.model.OdiReference.ReferenceType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OdiReference.ReferenceType>
Enclosing class:
OdiReference

public static enum OdiReference.ReferenceType
extends java.lang.Enum<OdiReference.ReferenceType>

Defines the possible types of references.


Enum Constant Summary
COMPLEX_REFERENCE
          A reference between two OdiDataStore using a complex sql expression.
DB_REFERENCE
          A reference based on column equality that exists in the database engine.
ODI_REFERENCE
          A reference based on column equality that exists only in ODI.
 
Method Summary
static OdiReference.ReferenceType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OdiReference.ReferenceType[] 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

COMPLEX_REFERENCE

public static final OdiReference.ReferenceType COMPLEX_REFERENCE
A reference between two OdiDataStore using a complex sql expression.


DB_REFERENCE

public static final OdiReference.ReferenceType DB_REFERENCE
A reference based on column equality that exists in the database engine.


ODI_REFERENCE

public static final OdiReference.ReferenceType ODI_REFERENCE
A reference based on column equality that exists only in ODI.

Method Detail

valueOf

public static OdiReference.ReferenceType 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

values

public static OdiReference.ReferenceType[] 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 (OdiReference.ReferenceType c : OdiReference.ReferenceType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

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

E17060-01

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