public enum SeverityType extends Enum<SeverityType> implements Serializable
| Enum Constant and Description |
|---|
CRITICAL |
ERROR |
INFO |
MAJOR |
MINOR |
NORMAL |
WARN |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static SeverityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeverityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeverityType NORMAL
public static final SeverityType INFO
public static final SeverityType WARNING
public static final SeverityType MINOR
public static final SeverityType MAJOR
public static final SeverityType CRITICAL
public static final SeverityType WARN
public static final SeverityType ERROR
public static SeverityType[] values()
for (SeverityType c : SeverityType.values()) System.out.println(c);
public static SeverityType 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 nullCopyright © 2008-2014 Abiquo Holdings S.L.. All Rights Reserved.