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