public enum LogOutputFlags extends java.lang.Enum<LogOutputFlags>
| Enum Constant and Description |
|---|
CONSOLE
Use Console to write log
|
EVENT_LOG
Post log in Windows Logs -> Application
|
FILE
Use file to write log.
|
NONE
Disable all logging
|
| Modifier and Type | Method and Description |
|---|---|
static LogOutputFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogOutputFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogOutputFlags NONE
public static final LogOutputFlags CONSOLE
public static final LogOutputFlags FILE
public static final LogOutputFlags EVENT_LOG
public static LogOutputFlags[] values()
for (LogOutputFlags c : LogOutputFlags.values()) System.out.println(c);
public static LogOutputFlags 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 null