public static enum Message.MessageLevel extends Enum<Message.MessageLevel>
| Modifier and Type | Method and Description |
|---|---|
static Message.MessageLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Message.MessageLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Message.MessageLevel DEBUG
public static final Message.MessageLevel INFO
public static final Message.MessageLevel WARN
public static final Message.MessageLevel ERROR
public static Message.MessageLevel[] values()
for (Message.MessageLevel c : Message.MessageLevel.values()) System.out.println(c);
public static Message.MessageLevel 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 null