|
Oracle® Data Integrator Java API Reference 11g Release 1 (11.1.1.5.0) E17060-02 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Object
java.lang.Enum<LogLevel>
oracle.odi.domain.runtime.session.LogLevel
public enum LogLevel
Level of log details. All OdiSessionTaskLog with a defined log level lower than or equal to OdiSession's log level value will be kept in repository. However, if the execution ends abnormally, all OdiSessionTaskLogs will be kept.
Can be one of the following:
| Enum Constant Summary | |
|---|---|
LEVEL_0Logging level 0. |
|
LEVEL_1Logging level 1. |
|
LEVEL_2Logging level 2. |
|
LEVEL_3Logging level 3. |
|
LEVEL_4Logging level 4. |
|
LEVEL_5Logging 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 |
|---|
public static final LogLevel LEVEL_0
public static final LogLevel LEVEL_1
public static final LogLevel LEVEL_2
public static final LogLevel LEVEL_3
public static final LogLevel LEVEL_4
public static final LogLevel LEVEL_5
| Method Detail |
|---|
public static LogLevel[] values()
for (LogLevel c : LogLevel.values())
System.out.println(c);
public static LogLevel valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int intValue()
|
Oracle® Data Integrator Java API Reference 11g Release 1 (11.1.1.5.0) E17060-02 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||