public static enum Transaction.LogLevel extends Enum<Transaction.LogLevel>
| Enum Constant and Description |
|---|
DEBUG |
ERROR |
FATAL |
INFO |
TRACE |
WARN |
| Modifier and Type | Field and Description |
|---|---|
protected org.apache.log4j.Level |
logLevel |
| Modifier and Type | Method and Description |
|---|---|
void |
logError(org.apache.commons.logging.Log log,
String msg,
Throwable eee) |
static Transaction.LogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transaction.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transaction.LogLevel FATAL
public static final Transaction.LogLevel ERROR
public static final Transaction.LogLevel WARN
public static final Transaction.LogLevel INFO
public static final Transaction.LogLevel DEBUG
public static final Transaction.LogLevel TRACE
public static Transaction.LogLevel[] values()
for (Transaction.LogLevel c : Transaction.LogLevel.values()) System.out.println(c);
public static Transaction.LogLevel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2008-2013 Cybelia. All Rights Reserved.