Interface Port

All Known Subinterfaces:
InputPort, OutputPort
All Known Implementing Classes:
AbstractPort, SimpleInputPort, SimpleOutputPort

public interface Port
This interface define a port of a step.
Since:
2.0
Author:
Laurent Jourdren
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the data format of the port.
    Get the steps linked to this port.
    Get the name of the port.
    boolean
    Test if the port requires a list as value.
  • Method Details

    • 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
    • getLinkedSteps

      Set<Step> getLinkedSteps()
      Get the steps linked to this port.
      Returns:
      a step with the list of linked steps