Enum Class Logger.LOGLEVEL

java.lang.Object
java.lang.Enum<Logger.LOGLEVEL>
net.simplace.core.logging.Logger.LOGLEVEL
All Implemented Interfaces:
Serializable, Comparable<Logger.LOGLEVEL>, Constable
Enclosing class:
Logger

public static enum Logger.LOGLEVEL extends Enum<Logger.LOGLEVEL>
Author:
Andreas Enders
  • Enum Constant Details

    • TRACE

      public static final Logger.LOGLEVEL TRACE
      Debug information for special purposes - output in log file as DEBUG
    • DEBUG

      public static final Logger.LOGLEVEL DEBUG
      Debug information
    • INFO

      public static final Logger.LOGLEVEL INFO
      Info level - giving state information of the software
    • WARN

      public static final Logger.LOGLEVEL WARN
      Warn level - warn for exceptions, that are automatically solved
    • ERROR

      public static final Logger.LOGLEVEL ERROR
      Error level - output with exception stack for exceptions that can NOT be automatically solved
    • FATAL

      public static final Logger.LOGLEVEL FATAL
      Fatal level - System has to stop directly - always logged
  • Method Details

    • values

      public static Logger.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 Logger.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