public enum PerceivedSeverity extends Enum<PerceivedSeverity>
Enum Constant and Description |
---|
CLEARED |
CRITICAL |
INDETERMINATE |
MAJOR |
MINOR |
WARNING |
Modifier and Type | Method and Description |
---|---|
boolean |
equalsTo(int i) |
int |
getValue() |
String |
stringValue() |
static PerceivedSeverity |
valueOf(int i) |
static PerceivedSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PerceivedSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PerceivedSeverity CLEARED
public static final PerceivedSeverity INDETERMINATE
public static final PerceivedSeverity MINOR
public static final PerceivedSeverity WARNING
public static final PerceivedSeverity MAJOR
public static final PerceivedSeverity CRITICAL
public static PerceivedSeverity[] values()
for (PerceivedSeverity c : PerceivedSeverity.values()) System.out.println(c);
public static PerceivedSeverity 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 getValue()
public static PerceivedSeverity valueOf(int i)
public boolean equalsTo(int i)
public String stringValue()