public static enum DMNMessage.Severity extends Enum<DMNMessage.Severity>
Enum Constant and Description |
---|
ERROR |
INFO |
TRACE
Deprecated.
use
INFO level. |
WARN |
Modifier and Type | Method and Description |
---|---|
static DMNMessage.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DMNMessage.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final DMNMessage.Severity TRACE
INFO
level.public static final DMNMessage.Severity INFO
public static final DMNMessage.Severity WARN
public static final DMNMessage.Severity ERROR
public static DMNMessage.Severity[] values()
for (DMNMessage.Severity c : DMNMessage.Severity.values()) System.out.println(c);
public static DMNMessage.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 © 2001–2019 JBoss by Red Hat. All rights reserved.