Serializable
, Comparable<Severity>
public enum Severity extends Enum<Severity>
Numerical Code | Severity |
---|---|
0 | Emergency: system is unusable |
1 | Alert: action must be taken immediately |
2 | Critical: critical conditions |
3 | Error: error conditions |
4 | Warning: warning conditions |
5 | Notice: normal but significant condition |
6 | Informational: informational messages |
7 | Debug: debug-level messages |
Enum Constant | Description |
---|---|
ALERT |
Action must be taken immediately.
|
CRITICAL |
Critical conditions.
|
DEBUG |
Debug level messages.
|
EMERG |
System is unusable.
|
ERROR |
Error conditions.
|
INFO |
Informational messages.
|
NOTICE |
Normal but significant conditions.
|
WARNING |
Warning conditions.
|
Modifier and Type | Method | Description |
---|---|---|
int |
getCode() |
Returns the severity code.
|
static Severity |
getSeverity(Level level) |
Returns the Severity for the specified Level.
|
boolean |
isEqual(String name) |
Determine if the name matches this Severity.
|
static Severity |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static Severity[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Severity EMERG
public static final Severity ALERT
public static final Severity CRITICAL
public static final Severity ERROR
public static final Severity WARNING
public static final Severity NOTICE
public static final Severity INFO
public static final Severity DEBUG
public static Severity[] values()
for (Severity c : Severity.values()) System.out.println(c);
public static Severity valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getCode()
public boolean isEqual(String name)
name
- the name to match.Copyright © 1999-2018. All Rights Reserved.
Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo, and the Apache Log4j logo are trademarks of The Apache Software Foundation.