Package com.luciad

Enum Class LogLevel

All Implemented Interfaces:
Serializable, Comparable<LogLevel>, Constable

public enum LogLevel extends Enum<LogLevel>
Various levels for logging messages.
  • Enum Constant Details Link icon

    • Error Link icon

      public static final LogLevel Error
      Indicates a problem from which no recovery is possible.
    • Warning Link icon

      public static final LogLevel Warning
      Indicates a problem from which we can recover.

      Recovery could be to give up whatever we attempted.

    • Info Link icon

      public static final LogLevel Info
      Indicates information of general interest.
    • Debug Link icon

      public static final LogLevel Debug
      Indicates information of use for figuring out a problem.
    • Trace Link icon

      public static final LogLevel Trace
      Indicates extremely detailed information that is probably only useful to the maintainer of the code.
  • Method Details Link icon

    • values Link icon

      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 Link icon

      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