public static enum AQBPLogger.LogLevel extends java.lang.Enum<AQBPLogger.LogLevel>
Enum Constant and Description |
---|
CONFIG_ERROR
A configuration error.
|
CONFIG_FATAL
A configuration error that always causes the logger to throw an exception.
|
CONFIG_WARNING
A configuration warning message, something that may or may not be an error.
|
ERROR
An error.
|
FATAL
An error that always causes the logger to throw an exception.
|
INFO
An informational message, does not indicate an error.
|
TRACE
A low level tracing message, for debugging.
|
WARNING
A warning message, something that may or may not be an error.
|
Modifier and Type | Field and Description |
---|---|
protected static int |
max_index |
Modifier and Type | Method and Description |
---|---|
protected int |
getIdx() |
static AQBPLogger.LogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AQBPLogger.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AQBPLogger.LogLevel FATAL
public static final AQBPLogger.LogLevel CONFIG_FATAL
public static final AQBPLogger.LogLevel ERROR
public static final AQBPLogger.LogLevel CONFIG_ERROR
public static final AQBPLogger.LogLevel WARNING
public static final AQBPLogger.LogLevel CONFIG_WARNING
public static final AQBPLogger.LogLevel INFO
public static final AQBPLogger.LogLevel TRACE
protected static final int max_index
public static AQBPLogger.LogLevel[] values()
for (AQBPLogger.LogLevel c : AQBPLogger.LogLevel.values()) System.out.println(c);
public static AQBPLogger.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 nullprotected int getIdx()