Interface ProcessModelFactory.StructuralNodeData
-
- Enclosing interface:
- ProcessModelFactory
public static interface ProcessModelFactory.StructuralNodeDataStructural node data.- Author:
- Kevin Goeser
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetBranchID()Returns the branch ID of the node the structural node date belongs to.intgetCorrespondingBlockNodeID()Returns the corresponding block node ID of the node the structural node date belongs to.intgetNodeID()Returns the ID of the node the structural node date belongs to.ProcessConstants.NodeTypegetNodeType()Returns the type of the node the structural node date belongs to.intgetSplitNodeID()Returns the split node ID of the node the structural node date belongs to.intgetTopologicalID()Returns the topological ID of the node the structural node date belongs to.
-
-
-
Method Detail
-
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).
-
-