Skip navigation links

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

E17060-04


oracle.odi.domain.runtime.session
Enum LogLevel

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

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LogLevel>

public enum LogLevel
extends java.lang.Enum<LogLevel>

Enumeration representing a logging level defined for a task whether it is a design time task or a runtime task.

Can be one of the following:

Since:
11.1.1.3.0

Enum Constant Summary
LEVEL_0
          Logging level 0.
LEVEL_1
          Logging level 1.
LEVEL_2
          Logging level 2.
LEVEL_3
          Logging level 3.
LEVEL_4
          Logging level 4.
LEVEL_5
          Logging level 5.

 

Method Summary
 int intValue()
          Returns the integer value of log level.
static LogLevel valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LogLevel[] 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

LEVEL_0

public static final LogLevel LEVEL_0
Logging level 0.

LEVEL_1

public static final LogLevel LEVEL_1
Logging level 1.

LEVEL_2

public static final LogLevel LEVEL_2
Logging level 2.

LEVEL_3

public static final LogLevel LEVEL_3
Logging level 3.

LEVEL_4

public static final LogLevel LEVEL_4
Logging level 4.

LEVEL_5

public static final LogLevel LEVEL_5
Logging level 5.

Method Detail

values

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

valueOf

public static LogLevel 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

intValue

public int intValue()
Returns the integer value of log level.
Returns:
log level

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.