Class ProcessSystemState.ConnectionState
java.lang.Object
neqsim.process.processmodel.lifecycle.ProcessSystemState.ConnectionState
- All Implemented Interfaces:
Serializable
- Enclosing class:
ProcessSystemState
Represents a connection between two pieces of equipment.
Captures the stream topology of the process for reconstruction and visualization.
- Version:
- 1.0
- Author:
- ESOL
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.ConnectionState(String sourceEquipmentName, String sourcePortName, String targetEquipmentName, String targetPortName) Creates a connection state. -
Method Summary
Modifier and TypeMethodDescriptionGets the source equipment name.Gets the source port name.Gets the target equipment name.Gets the target port name.toString()
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
sourceEquipmentName
-
sourcePortName
-
targetEquipmentName
-
targetPortName
-
-
Constructor Details
-
ConnectionState
public ConnectionState()Default constructor. -
ConnectionState
public ConnectionState(String sourceEquipmentName, String sourcePortName, String targetEquipmentName, String targetPortName) Creates a connection state.- Parameters:
sourceEquipmentName- name of the source equipmentsourcePortName- name of the output port (e.g., "gasOutStream")targetEquipmentName- name of the target equipmenttargetPortName- name of the input port (e.g., "inlet")
-
-
Method Details
-
getSourceEquipmentName
Gets the source equipment name.- Returns:
- the source equipment name
-
getSourcePortName
-
getTargetEquipmentName
Gets the target equipment name.- Returns:
- the target equipment name
-
getTargetPortName
-
toString
-