org.opennms.netmgt.model
Enum OnmsSeverity

java.lang.Object
  extended by java.lang.Enum<OnmsSeverity>
      extended by org.opennms.netmgt.model.OnmsSeverity
All Implemented Interfaces:
Serializable, Comparable<OnmsSeverity>

public enum OnmsSeverity
extends Enum<OnmsSeverity>
implements Serializable

OpenNMS severity enumeration.

Version:
$Id: $
Author:
DJ Gregor

Enum Constant Summary
CLEARED
           
CRITICAL
           
INDETERMINATE
           
MAJOR
           
MINOR
           
NORMAL
           
WARNING
           
 
Method Summary
static OnmsSeverity escalate(OnmsSeverity sev)
          escalate
static OnmsSeverity get(int id)
          get
static OnmsSeverity get(String label)
          get
 String getColor()
          getColor
 int getId()
          getId
 String getLabel()
          getLabel
 boolean isGreaterThan(OnmsSeverity other)
          isGreaterThan
 boolean isGreaterThanOrEqual(OnmsSeverity other)
          isGreaterThanOrEqual
 boolean isLessThan(OnmsSeverity other)
          isLessThan
 boolean isLessThanOrEqual(OnmsSeverity other)
          isLessThanOrEqual
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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 name
NullPointerException - if the argument is null

getId

public int getId()

getId

Returns:
a int.

getLabel

public String getLabel()

getLabel

Returns:
a String object.

getColor

public String getColor()

getColor

Returns:
a String object.

isLessThan

public boolean isLessThan(OnmsSeverity other)

isLessThan

Parameters:
other - a OnmsSeverity object.
Returns:
a boolean.

isLessThanOrEqual

public boolean isLessThanOrEqual(OnmsSeverity other)

isLessThanOrEqual

Parameters:
other - a OnmsSeverity object.
Returns:
a boolean.

isGreaterThan

public boolean isGreaterThan(OnmsSeverity other)

isGreaterThan

Parameters:
other - a OnmsSeverity object.
Returns:
a boolean.

isGreaterThanOrEqual

public boolean isGreaterThanOrEqual(OnmsSeverity other)

isGreaterThanOrEqual

Parameters:
other - a OnmsSeverity 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 - a String object.
Returns:
a OnmsSeverity object.

escalate

public static OnmsSeverity escalate(OnmsSeverity sev)

escalate

Parameters:
sev - a OnmsSeverity object.
Returns:
a OnmsSeverity object.


Copyright © 2011. All Rights Reserved.