Enum Class Logger.Level

java.lang.Object
java.lang.Enum<Logger.Level>
no.ntnu.idatt1002.demo.Logger.Level
All Implemented Interfaces:
Serializable, Comparable<Logger.Level>, Constable
Enclosing class:
Logger

public static enum Logger.Level extends Enum<Logger.Level>
Enum for the different log levels.

SEVERE: A severe error message ERROR: An error message WARNING: A warning message INFO: An info message DEBUG: A debug message

  • Enum Constant Details

  • Field Details

    • severity

      private int severity
  • Constructor Details

    • Level

      private Level(int severity)
  • Method Details

    • values

      public static Logger.Level[] 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.Level 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
    • getSeverity

      public int getSeverity()