public static enum Logger.LogOption extends java.lang.Enum<Logger.LogOption>
Used to control specific feature options of the logging system, which can be enabled or disabled through the setLogOption method.
Logger.setLogOption(LogOption, int)| Enum Constant and Description |
|---|
FRAME_LEVEL_LOGGING_ENABLED
Frame-level logging.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getKey() |
static Logger.LogOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Logger.LogOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Logger.LogOption FRAME_LEVEL_LOGGING_ENABLED
public static Logger.LogOption[] values()
for (Logger.LogOption c : Logger.LogOption.values()) System.out.println(c);
public static Logger.LogOption 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 int getKey()