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

E17060-01

oracle.odi.domain.topology
Enum OdiWorkRepositoryInfo.WorkRepType

java.lang.Object
  extended by java.lang.Enum<OdiWorkRepositoryInfo.WorkRepType>
      extended by oracle.odi.domain.topology.OdiWorkRepositoryInfo.WorkRepType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OdiWorkRepositoryInfo.WorkRepType>
Enclosing class:
OdiWorkRepositoryInfo

public static enum OdiWorkRepositoryInfo.WorkRepType
extends java.lang.Enum<OdiWorkRepositoryInfo.WorkRepType>

Type of an ODI Work Repository. Can be one of the following:

Since:
11.1.1.3.0

Enum Constant Summary
DESIGN_TIME
          Design time work repository type.
RUNTIME
          Runtime work repository type.
 
Method Summary
static OdiWorkRepositoryInfo.WorkRepType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OdiWorkRepositoryInfo.WorkRepType[] 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

DESIGN_TIME

public static final OdiWorkRepositoryInfo.WorkRepType DESIGN_TIME
Design time work repository type.


RUNTIME

public static final OdiWorkRepositoryInfo.WorkRepType RUNTIME
Runtime work repository type.

Method Detail

valueOf

public static OdiWorkRepositoryInfo.WorkRepType 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 OdiWorkRepositoryInfo.WorkRepType[] 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 (OdiWorkRepositoryInfo.WorkRepType c : OdiWorkRepositoryInfo.WorkRepType.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.