Interface StructuredEdge
-
public interface StructuredEdgeAn 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetDestinationNodeID()EdgegetEdge()Return the edge object.ProcessConstants.EdgeTypegetEdgeType()intgetSourceNodeID()The source node ID of the edge.
-
-
-
Method Detail
-
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.
-
-