public enum ResultSeverity extends java.lang.Enum<ResultSeverity>
| Enum Constant and Description |
|---|
ERROR
WorkflowCondition validation finishes with non-skippable error. |
OK
WorkflowCondition validation is OK. |
WARN
WorkflowCondition validation finishes with a warning. |
| Modifier and Type | Method and Description |
|---|---|
static ResultSeverity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResultSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultSeverity OK
WorkflowCondition validation is OK. No problems detected.public static final ResultSeverity WARN
WorkflowCondition validation finishes with a warning. A ResultMessage will be presented to a user.
User can ignore warning and force the transition.public static final ResultSeverity ERROR
WorkflowCondition validation finishes with non-skippable error. A ResultMessage message will be presented to a user.
User can't force the transition.public static ResultSeverity[] values()
for (ResultSeverity c : ResultSeverity.values()) System.out.println(c);
public static ResultSeverity 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