public enum LogLevel extends java.lang.Enum<LogLevel>
Enum Constant | Description |
---|---|
Debug |
Level for debug messages.
|
Error |
Level for error messages.
|
Fatal |
Level for fatal error messages.
|
Message |
Level for information messages.
|
Trace |
Level for traces.
|
Warning |
Level for warning messages.
|
Modifier and Type | Field | Description |
---|---|---|
protected int |
mValue |
Modifier and Type | Method | Description |
---|---|---|
static LogLevel |
fromInt(int value) |
|
protected static LogLevel[] |
fromIntArray(int[] values) |
|
int |
toInt() |
|
protected static int[] |
toIntArray(LogLevel[] values) |
|
static LogLevel |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static LogLevel[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogLevel Debug
public static final LogLevel Trace
public static final LogLevel Message
public static final LogLevel Warning
public static final LogLevel Error
public static final LogLevel Fatal
public static LogLevel[] values()
for (LogLevel c : LogLevel.values()) System.out.println(c);
public static LogLevel 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 static LogLevel fromInt(int value) throws java.lang.RuntimeException
java.lang.RuntimeException
protected static LogLevel[] fromIntArray(int[] values) throws java.lang.RuntimeException
java.lang.RuntimeException
protected static int[] toIntArray(LogLevel[] values) throws java.lang.RuntimeException
java.lang.RuntimeException
public int toInt()