public static enum AlertSupport.Severity extends Enum<AlertSupport.Severity>
Enum Constant and Description |
---|
CRITICAL |
ERROR |
FATAL |
INFORMATION |
WARNING |
Modifier and Type | Method and Description |
---|---|
static AlertSupport.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlertSupport.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertSupport.Severity INFORMATION
public static final AlertSupport.Severity WARNING
public static final AlertSupport.Severity ERROR
public static final AlertSupport.Severity CRITICAL
public static final AlertSupport.Severity FATAL
public static AlertSupport.Severity[] values()
for (AlertSupport.Severity c : AlertSupport.Severity.values()) System.out.println(c);
public static AlertSupport.Severity 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 © 2010–2016 AdroitLogic. All rights reserved.