Interface Port
-
- All Known Subinterfaces:
InputPort,OutputPort
- All Known Implementing Classes:
AbstractPort,SimpleInputPort,SimpleOutputPort
public interface PortThis interface define a port of a step.- Since:
- 2.0
- Author:
- Laurent Jourdren
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataFormatgetFormat()Get the data format of the port.Set<Step>getLinkedSteps()Get the steps linked to this port.StringgetName()Get the name of the port.booleanisList()Test if the port requires a list as value.
-
-
-
Method Detail
-
getName
String getName()
Get the name of the port.- Returns:
- the name of the port
-
getFormat
DataFormat getFormat()
Get the data format of the port.- Returns:
- a DataFormat object
-
isList
boolean isList()
Test if the port requires a list as value.- Returns:
- true if the the port requires a list as value
-
-