Interface ProcessModelFactory.StructuralNodeData
- Enclosing interface:
- ProcessModelFactory
public static interface ProcessModelFactory.StructuralNodeData
Structural node data.
- Author:
- Kevin Goeser
-
Method Summary
Modifier and TypeMethodDescriptionintReturns the branch ID of the node the structural node date belongs to.intReturns the corresponding block node ID of the node the structural node date belongs to.intReturns the ID of the node the structural node date belongs to.Returns the type of the node the structural node date belongs to.intReturns the split node ID of the node the structural node date belongs to.intReturns the topological ID of the node the structural node date belongs to.
-
Method Details
-
getNodeID
int getNodeID()Returns the ID of the node the structural node date belongs to.- Returns:
- The ID of the node, this data belongs to.
-
getNodeType
ProcessConstants.NodeType getNodeType()Returns the type of the node the structural node date belongs to.- Returns:
- The type of the node.
-
getTopologicalID
int getTopologicalID()Returns the topological ID of the node the structural node date belongs to.- Returns:
- The topological ID,
Template.getNodeTopologicalID(int).
-
getBranchID
int getBranchID()Returns the branch ID of the node the structural node date belongs to.- Returns:
- The branch ID,
Template.getNodeBranchID(int).
-
getSplitNodeID
int getSplitNodeID()Returns the split node ID of the node the structural node date belongs to.- Returns:
- The split node ID,
Template.getNodeSplitNodeID(int).
-
getCorrespondingBlockNodeID
int getCorrespondingBlockNodeID()Returns the corresponding block node ID of the node the structural node date belongs to.- Returns:
- The corresponding block node ID,
Template.getNodeCorrespondingBlockNodeID(int).
-