Enum Constant and Description |
---|
DEBUG
The debug log configuration
|
ERROR
The error log configuration
|
ERROREX
The error with exceptions log configuration
|
INFO
The info log configuration
|
INFOEX
The info with exceptions log configuration
|
NOINIT
Don't change the logging settings
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getFilename()
Get the log configuration filename
|
static LogConfig |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogConfig[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogConfig INFO
public static final LogConfig INFOEX
public static final LogConfig ERROR
public static final LogConfig ERROREX
public static final LogConfig DEBUG
public static final LogConfig NOINIT
public static LogConfig[] values()
for (LogConfig c : LogConfig.values()) System.out.println(c);
public static LogConfig 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 java.lang.String getFilename()