Skip navigation links

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

E17060-02


oracle.odi.domain.runtime.session
Enum OdiSessionTaskLog.LogCounter

java.lang.Object
  extended by java.lang.Enum<OdiSessionTaskLog.LogCounter>
      extended by oracle.odi.domain.runtime.session.OdiSessionTaskLog.LogCounter

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OdiSessionTaskLog.LogCounter>
Enclosing class:
OdiSessionTaskLog

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

Type safe enum that represents different log counter types defined for a task. Can be one of the following:


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 not increment any counter.
UPDATE
          Execution will increment the UPDATE counter.

 

Method Summary
static OdiSessionTaskLog.LogCounter valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OdiSessionTaskLog.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 OdiSessionTaskLog.LogCounter DELETE
Execution will increment the DELETE counter.

ERROR

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

UPDATE

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

INSERT

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

NONE

public static final OdiSessionTaskLog.LogCounter NONE
Execution will not increment any counter.

Method Detail

values

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

valueOf

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

Skip navigation links

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

E17060-02


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