Interface StructuredEdge
public interface StructuredEdge
An edge with structural information. This interface is for
temporary use only, e.g. for construction purposes in the factory.
Implementations also may use it internally.
- Author:
- Kevin Goeser
-
Method Summary
Modifier and TypeMethodDescriptionintgetEdge()Return the edge object.intThe source node ID of the edge.
-
Method Details
-
getEdge
Edge getEdge()Return the edge object.- Returns:
- The edge.
-
getSourceNodeID
int getSourceNodeID()The source node ID of the edge.- Returns:
- The source node ID of the edge.
-
getDestinationNodeID
int getDestinationNodeID()- Returns:
- The destination node ID of the edge.
-
getEdgeType
ProcessConstants.EdgeType getEdgeType()- Returns:
- The type of the edge.
-