public static enum LogUtil.LogTarget extends Enum<LogUtil.LogTarget>
| Enum Constant and Description |
|---|
BOTH
Logs on both client and server.
|
CLIENT
Logs on the client console only.
|
NONE
No logging should occur.
|
SERVER
Logs using the server's logging framework.
|
| Modifier and Type | Method and Description |
|---|---|
static LogUtil.LogTarget |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogUtil.LogTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogUtil.LogTarget NONE
public static final LogUtil.LogTarget CLIENT
public static final LogUtil.LogTarget SERVER
public static final LogUtil.LogTarget BOTH
public static LogUtil.LogTarget[] values()
for (LogUtil.LogTarget c : LogUtil.LogTarget.values()) System.out.println(c);
public static LogUtil.LogTarget 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 © 2017 Regenstrief Center for Biomedical Informatics. All rights reserved.