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

E17060-01

oracle.odi.domain.project
Enum OdiProcedureLine.LogCounter

java.lang.Object
  extended by java.lang.Enum<OdiProcedureLine.LogCounter>
      extended by oracle.odi.domain.project.OdiProcedureLine.LogCounter
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OdiProcedureLine.LogCounter>
Enclosing class:
OdiProcedureLine

public static enum OdiProcedureLine.LogCounter
extends java.lang.Enum<OdiProcedureLine.LogCounter>

Internal Enum that represents the different log counter type an OdiProcedureLine can use.

DELETE: execution will increment the DELETE counter
ERROR: execution will increment the ERROR counter
INSERT: execution will increment the INSERT counter
NONE: execution will increment no counter


Enum Constant Summary
DELETE
          Execution will increment the DELETE counter.
ERROR
          Execution will increment the ERROR counter.
INSERT
          Execution will increment the INSERT counter.
NONE
          Execution will increment no counter.
UPDATE
          Execution will increment the UPDATE counter.
 
Method Summary
static OdiProcedureLine.LogCounter valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OdiProcedureLine.LogCounter[] 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

DELETE

public static final OdiProcedureLine.LogCounter DELETE
Execution will increment the DELETE counter.


ERROR

public static final OdiProcedureLine.LogCounter ERROR
Execution will increment the ERROR counter.


INSERT

public static final OdiProcedureLine.LogCounter INSERT
Execution will increment the INSERT counter.


NONE

public static final OdiProcedureLine.LogCounter NONE
Execution will increment no counter.


UPDATE

public static final OdiProcedureLine.LogCounter UPDATE
Execution will increment the UPDATE counter.

Method Detail

valueOf

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