public enum AgamaLogLevel extends Enum<AgamaLogLevel>
Enum Constant and Description |
---|
DEBUG
Detailed messages that are useful to debug the Agama process.
|
ERROR
Designates error events that might still allow the Agama process to continue.
|
FATAL
Designates severe error events that will abort the Agama process.
|
INFO
Informational messages that highlight the Agama process.
|
WARNING
Designates potential harmful messages from the Agama process.
|
Modifier and Type | Method and Description |
---|---|
static AgamaLogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AgamaLogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgamaLogLevel INFO
public static final AgamaLogLevel DEBUG
public static final AgamaLogLevel WARNING
public static final AgamaLogLevel ERROR
public static final AgamaLogLevel FATAL
public static AgamaLogLevel[] values()
for (AgamaLogLevel c : AgamaLogLevel.values()) System.out.println(c);
public static AgamaLogLevel 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 null