public static enum Message.Severity extends java.lang.Enum<Message.Severity>
| Enum Constant and Description |
|---|
alert |
Alert |
error |
Error |
info |
Info |
| Modifier and Type | Method and Description |
|---|---|
static Message.Severity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Message.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Message.Severity Info
public static final Message.Severity info
public static final Message.Severity Alert
public static final Message.Severity alert
public static final Message.Severity Error
public static final Message.Severity error
public static Message.Severity[] values()
for (Message.Severity c : Message.Severity.values()) System.out.println(c);
public static Message.Severity valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null