| Package | Description |
|---|---|
| de.aristaflow.adept2.model.globals |
The globals packages provides commonly used variables and enums.
|
| de.aristaflow.adept2.model.processmodel |
Warning: This package description is OUTDATED (work in progress)!!
|
| Modifier and Type | Method and Description |
|---|---|
static ProcessConstants.DeltaScope |
ProcessConstants.DeltaScope.valueOf(int code) |
static ProcessConstants.DeltaScope |
ProcessConstants.DeltaScope.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.DeltaScope[] |
ProcessConstants.DeltaScope.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<StructuredDataEdge> |
DeltaLayer.getDataEdges(ProcessConstants.DeltaScope scope)
Returns a set of comparable data edges (data edges with structural
information), of the given scope.
|
int[] |
DeltaLayer.getDataElements(ProcessConstants.DeltaScope scope)
Returns the IDs of the data elements of the requested scope.
|
java.util.Set<StructuredEdge> |
DeltaLayer.getEdges(ProcessConstants.DeltaScope scope,
ProcessConstants.EdgeType... edgeTypes)
Returns a set of comparable edges (edges with structural information),
of the given scope and type(s).
|
int[] |
DeltaLayer.getNodes(ProcessConstants.DeltaScope scope)
Returns the IDs of nodes of the given scope.
|
int[] |
DeltaLayer.getPredByEdgeType(ProcessConstants.DeltaScope scope,
int nodeID,
ProcessConstants.EdgeType... types)
Returns a list of node IDs which are predecessors of the node, using
edges of the given types.
|
int[] |
DeltaLayer.getSuccByEdgeType(ProcessConstants.DeltaScope scope,
int nodeID,
ProcessConstants.EdgeType... types)
Returns a list of node IDs which are successors of the node, using
edges of the given types.
|