|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<LogConfig>
org.stanwood.media.logging.LogConfig
public enum LogConfig
Logging options usable from the command line
Enum Constant Summary | |
---|---|
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 |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 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
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String getFilename()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |