Enum Class Logger.MessageLevel

java.lang.Object
java.lang.Enum<Logger.MessageLevel>
org.processmining.framework.plugin.events.Logger.MessageLevel
All Implemented Interfaces:
Serializable, Comparable<Logger.MessageLevel>, Constable
Enclosing interface:
Logger

public static enum Logger.MessageLevel extends Enum<Logger.MessageLevel>
  • Enum Constant Details

    • NORMAL

      public static final Logger.MessageLevel NORMAL
      Normal message level, for information during runtime
    • WARNING

      public static final Logger.MessageLevel WARNING
      Warning message level, for warning messages during runtime
    • ERROR

      public static final Logger.MessageLevel ERROR
      Error message level, for error information during ruintime. Use in case error can be recovered from, i.e. not in case of exception handling.
    • TEST

      public static final Logger.MessageLevel TEST
      All TEST messages are omitted in the release version.
    • DEBUG

      public static final Logger.MessageLevel DEBUG
      All DEBUG messages are omitted in the release version.
  • Method Details

    • values

      public static Logger.MessageLevel[] 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.MessageLevel 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
    • getShortName

      public String getShortName()
    • getLongName

      public String getLongName()