Package no.ntnu.idatt1002.demo
Enum Class Logger.Level
- All Implemented Interfaces:
Serializable
,Comparable<Logger.Level>
,Constable
- Enclosing class:
Logger
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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
static Logger.Level
Returns the enum constant of this class with the specified name.static Logger.Level[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FATAL
-
ERROR
-
WARNING
-
INFO
-
DEBUG
-
-
Field Details
-
severity
private int severity
-
-
Constructor Details
-
Level
private Level(int severity)
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
getSeverity
public int getSeverity()
-