Package org.opennms.netmgt.model
Enum OnmsSeverity
- java.lang.Object
-
- java.lang.Enum<OnmsSeverity>
-
- org.opennms.netmgt.model.OnmsSeverity
-
- All Implemented Interfaces:
Serializable
,Comparable<OnmsSeverity>
public enum OnmsSeverity extends Enum<OnmsSeverity> implements Serializable
OpenNMS severity enumeration.- Author:
- DJ Gregor
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OnmsSeverity
escalate(OnmsSeverity sev)
escalatestatic OnmsSeverity
get(int id)
getstatic OnmsSeverity
get(String label)
getString
getColor()
getColorint
getId()
getIdString
getLabel()
getLabelboolean
isGreaterThan(OnmsSeverity other)
isGreaterThanboolean
isGreaterThanOrEqual(OnmsSeverity other)
isGreaterThanOrEqualboolean
isLessThan(OnmsSeverity other)
isLessThanboolean
isLessThanOrEqual(OnmsSeverity other)
isLessThanOrEqualstatic List<String>
names()
static OnmsSeverity
valueOf(String name)
Returns the enum constant of this type with the specified name.static OnmsSeverity[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INDETERMINATE
public static final OnmsSeverity INDETERMINATE
-
CLEARED
public static final OnmsSeverity CLEARED
-
NORMAL
public static final OnmsSeverity NORMAL
-
WARNING
public static final OnmsSeverity WARNING
-
MINOR
public static final OnmsSeverity MINOR
-
MAJOR
public static final OnmsSeverity MAJOR
-
CRITICAL
public static final OnmsSeverity CRITICAL
-
-
Method Detail
-
values
public static OnmsSeverity[] 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 (OnmsSeverity c : OnmsSeverity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OnmsSeverity valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getId
public int getId()
getId
- Returns:
- a int.
-
isLessThan
public boolean isLessThan(OnmsSeverity other)
isLessThan
- Parameters:
other
- aOnmsSeverity
object.- Returns:
- a boolean.
-
isLessThanOrEqual
public boolean isLessThanOrEqual(OnmsSeverity other)
isLessThanOrEqual
- Parameters:
other
- aOnmsSeverity
object.- Returns:
- a boolean.
-
isGreaterThan
public boolean isGreaterThan(OnmsSeverity other)
isGreaterThan
- Parameters:
other
- aOnmsSeverity
object.- Returns:
- a boolean.
-
isGreaterThanOrEqual
public boolean isGreaterThanOrEqual(OnmsSeverity other)
isGreaterThanOrEqual
- Parameters:
other
- aOnmsSeverity
object.- Returns:
- a boolean.
-
get
public static OnmsSeverity get(int id)
get
- Parameters:
id
- a int.- Returns:
- a
OnmsSeverity
object.
-
get
public static OnmsSeverity get(String label)
get
- Parameters:
label
- aString
object.- Returns:
- a
OnmsSeverity
object.
-
escalate
public static OnmsSeverity escalate(OnmsSeverity sev)
escalate
- Parameters:
sev
- aOnmsSeverity
object.- Returns:
- a
OnmsSeverity
object.
-
-