Enum Class LogLevel

java.lang.Object
java.lang.Enum<LogLevel>
com.unblu.sdk.core.debug.LogLevel
All Implemented Interfaces:
Serializable, Comparable<LogLevel>, Constable

public enum LogLevel extends Enum<LogLevel>
Level of log messages
  • Enum Constant Details

    • VERBOSE

      public static final LogLevel VERBOSE
      Verbose messages. All messages are logged
    • DEBUG

      public static final LogLevel DEBUG
      Debug messages
    • INFO

      public static final LogLevel INFO
      Informational messages
    • WARN

      public static final LogLevel WARN
      Warning messages
    • ERROR

      public static final LogLevel ERROR
      Error messages
  • Method Details

    • values

      public static LogLevel[] 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

      public static LogLevel valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • isLowerThen

      public boolean isLowerThen(LogLevel logLevel)
      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.