public static enum NodeRelations.NodeRelation extends java.lang.Enum<NodeRelations.NodeRelation>
| Enum Constant and Description |
|---|
AFTER
there exists an AFTER relation, no BEFORE / parallel / exclusive relation
|
EXCLUSIVE
the execution of the two nodes is exclusive
|
ONE_BEFORE_TWO
If the nodes are executed, they are both executed.
|
ONE_BEFORE_TWO_OPTIONAL
If one is executed, it is executed before two.
|
ONE_OPTIONAL_BEFORE_TWO
If two is executed, one is optionally executed before two
|
ONE_OPTIONAL_BEFORE_TWO_OPTIONAL
One or two might be executed, one always before two.
|
PARALLEL
the execution of the two nodes is parallel
|
| Modifier and Type | Method and Description |
|---|---|
static NodeRelations.NodeRelation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeRelations.NodeRelation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeRelations.NodeRelation ONE_BEFORE_TWO
public static final NodeRelations.NodeRelation ONE_OPTIONAL_BEFORE_TWO
public static final NodeRelations.NodeRelation ONE_BEFORE_TWO_OPTIONAL
public static final NodeRelations.NodeRelation ONE_OPTIONAL_BEFORE_TWO_OPTIONAL
public static final NodeRelations.NodeRelation EXCLUSIVE
public static final NodeRelations.NodeRelation PARALLEL
public static final NodeRelations.NodeRelation AFTER
public static NodeRelations.NodeRelation[] values()
for (NodeRelations.NodeRelation c : NodeRelations.NodeRelation.values()) System.out.println(c);
public static NodeRelations.NodeRelation 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