public enum MessageSeverity extends Enum<MessageSeverity>
Enum Constant and Description |
---|
ERROR
Error severity.
|
INFO
Informational severity.
|
WARN
Warning severity.
|
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 INFO
public static final MessageSeverity WARN
public static final MessageSeverity ERROR
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 © 2016 JBoss by Red Hat. All rights reserved.