public static enum CentralLogger.Mode extends java.lang.Enum<CentralLogger.Mode>
| Enum Constant and Description |
|---|
CLIENT
Mode for client that sends logs to the server.
|
CLIENT_BASE
Mode for ClientDriver as the app entry point.
|
CLIENT_STANDALONE
Mode for client that writes logs to files by itself.
|
DEFAULT
Fallback mode for all unspecified entry points, like standalone tools or tests.
|
SERVER
Mode for the server.
|
SERVER_BASE
Mode for ServerDriver as the app entry point.
|
SPAWNER_JVM
Mode for the NativeSecureConnection JVM launched by the spawner.
|
| Modifier and Type | Method and Description |
|---|---|
static CentralLogger.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CentralLogger.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CentralLogger.Mode CLIENT_BASE
public static final CentralLogger.Mode CLIENT
public static final CentralLogger.Mode CLIENT_STANDALONE
public static final CentralLogger.Mode SERVER_BASE
public static final CentralLogger.Mode SERVER
public static final CentralLogger.Mode DEFAULT
public static final CentralLogger.Mode SPAWNER_JVM
public static CentralLogger.Mode[] values()
for (CentralLogger.Mode c : CentralLogger.Mode.values()) System.out.println(c);
public static CentralLogger.Mode 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