public abstract class JobNode extends AstNode
| Constructor and Description |
|---|
JobNode(int startPos,
int endPos) |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<JobNode> |
getSeries()
For nodes representing a flow or a split, return the series of
elements to run in sequence/parallel.
|
JobNode |
getSeriesElement(int index)
For nodes representing a flow or a split, return a specific element in the
series of things that will run either sequentially or in parallel.
|
int |
getSeriesLength()
For nodes representing a flow or split, return how many are in the series of things
to run (so the number to run in sequence or the number to run in parallel).
|
boolean |
isJobDescriptor() |
public boolean isJobDescriptor()
public int getSeriesLength()
public JobNode getSeriesElement(int index)
index - the element of interestpublic java.util.List<JobNode> getSeries()