Package org.opennms.netmgt.syslogd
Enum SyslogSeverity
- java.lang.Object
-
- java.lang.Enum<SyslogSeverity>
-
- org.opennms.netmgt.syslogd.SyslogSeverity
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SyslogSeverity>
public enum SyslogSeverity extends java.lang.Enum<SyslogSeverity>
-
-
Field Summary
Fields Modifier and Type Field Description static int
MASK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
int
getPriority(SyslogFacility facility)
static SyslogSeverity
getSeverity(int severity)
static SyslogSeverity
getSeverityForCode(int code)
int
getSeverityNumber()
java.lang.String
toString()
static SyslogSeverity
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SyslogSeverity[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EMERGENCY
public static final SyslogSeverity EMERGENCY
-
ALERT
public static final SyslogSeverity ALERT
-
CRITICAL
public static final SyslogSeverity CRITICAL
-
ERROR
public static final SyslogSeverity ERROR
-
WARNING
public static final SyslogSeverity WARNING
-
NOTICE
public static final SyslogSeverity NOTICE
-
INFORMATIONAL
public static final SyslogSeverity INFORMATIONAL
-
DEBUG
public static final SyslogSeverity DEBUG
-
ALL
public static final SyslogSeverity ALL
-
UNKNOWN
public static final SyslogSeverity UNKNOWN
-
-
Field Detail
-
MASK
public static final int MASK
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static SyslogSeverity[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SyslogSeverity c : SyslogSeverity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SyslogSeverity valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getSeverityNumber
public int getSeverityNumber()
-
getDescription
public java.lang.String getDescription()
-
getPriority
public int getPriority(SyslogFacility facility)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<SyslogSeverity>
-
getSeverity
public static SyslogSeverity getSeverity(int severity)
-
getSeverityForCode
public static SyslogSeverity getSeverityForCode(int code)
-
-