public enum ConsoleLogSeverity extends Enum<ConsoleLogSeverity>
Enum Constant and Description |
---|
DEBUG |
ERROR |
FATAL |
INFO |
LOG |
TRACE |
WARNING |
Modifier and Type | Method and Description |
---|---|
static ConsoleLogSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsoleLogSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsoleLogSeverity INFO
public static final ConsoleLogSeverity LOG
public static final ConsoleLogSeverity TRACE
public static final ConsoleLogSeverity DEBUG
public static final ConsoleLogSeverity WARNING
public static final ConsoleLogSeverity ERROR
public static final ConsoleLogSeverity FATAL
public static ConsoleLogSeverity[] values()
for (ConsoleLogSeverity c : ConsoleLogSeverity.values()) System.out.println(c);
public static ConsoleLogSeverity 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. All Rights Reserved.