Package com.unblu.sdk.core.debug
Enum Class LogLevel
- All Implemented Interfaces:
Serializable
,Comparable<LogLevel>
,Constable
Level of log messages
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionboolean
isLowerThen
(LogLevel logLevel) Compares the current log level with another log level.
The lower the log level, the more verbose it is.static LogLevel
Returns the enum constant of this class with the specified name.static LogLevel[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VERBOSE
Verbose messages. All messages are logged -
DEBUG
Debug messages -
INFO
Informational messages -
WARN
Warning messages -
ERROR
Error messages
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
isLowerThen
Compares the current log level with another log level.
The lower the log level, the more verbose it is. For example, DEBUG is lower than ERROR: the former logs more messages than the latter.- Parameters:
logLevel
- The log level to compare the current log level to- Returns:
- true if the current log level is lower then the log level it's being compared with.
-