Interface ProcessModelFactory.StructuralNodeData
-
- Enclosing interface:
- ProcessModelFactory
public static interface ProcessModelFactory.StructuralNodeData
Structural node data.- Author:
- Kevin Goeser
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getBranchID()
Returns the branch ID of the node the structural node date belongs to.int
getCorrespondingBlockNodeID()
Returns the corresponding block node ID of the node the structural node date belongs to.int
getNodeID()
Returns the ID of the node the structural node date belongs to.ProcessConstants.NodeType
getNodeType()
Returns the type of the node the structural node date belongs to.int
getSplitNodeID()
Returns the split node ID of the node the structural node date belongs to.int
getTopologicalID()
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)
.
-
-