Enum Constant and Description |
---|
DEBUG
Debug logging level, which corresponds to
Log.DEBUG Android logging
level. |
ERROR
Error logging level, which corresponds to
Log.ERROR Android logging
level. |
INFO
Information logging level, which corresponds to
Log.INFO Android
logging level. |
VERBOSE
Verbose logging level, which corresponds to
Log.VERBOSE Android logging
level. |
WARNING
Warning logging level, which corresponds to
Log.WARN Android logging
level. |
WTF
"What a Terrible Failure" logging level, which corresponds to
Log.ASSERT Android logging level. |
Modifier and Type | Method and Description |
---|---|
protected abstract int |
getAndroidPriority()
Gets corresponding Android
Log logging level. |
static ALogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ALogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ALogLevel WTF
Log.ASSERT
Android logging level.public static final ALogLevel ERROR
Log.ERROR
Android logging
level.public static final ALogLevel WARNING
Log.WARN
Android logging
level.public static final ALogLevel INFO
Log.INFO
Android
logging level.public static final ALogLevel DEBUG
Log.DEBUG
Android logging
level.public static final ALogLevel VERBOSE
Log.VERBOSE
Android logging
level.public static ALogLevel[] values()
for (ALogLevel c : ALogLevel.values()) System.out.println(c);
public static ALogLevel 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 abstract int getAndroidPriority()
Log
logging level.Log
logging level.