public enum LoggedNodeStatus extends java.lang.Enum<LoggedNodeStatus>
| Enum Constant and Description |
|---|
ERROR
Node ends with the
_error transition
or timeout occurs. |
MISSING
See the missing
node documentation.
|
OTHER
Node ends with a custom transition
that is declared in a task definition.
|
SUCCESS
Node ends with the
`_success` transition. |
UNPROCESSED
Previous node has ended with transition pointing to a different node.
|
| Modifier and Type | Method and Description |
|---|---|
static LoggedNodeStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LoggedNodeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggedNodeStatus SUCCESS
`_success` transition.public static final LoggedNodeStatus ERROR
_error transition
or timeout occurs.public static final LoggedNodeStatus OTHER
public static final LoggedNodeStatus MISSING
public static final LoggedNodeStatus UNPROCESSED
public static LoggedNodeStatus[] values()
for (LoggedNodeStatus c : LoggedNodeStatus.values()) System.out.println(c);
public static LoggedNodeStatus 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