Interface InputColumn


public interface InputColumn
Defines an input column of a custom step.
Since:
2.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the ID of the input column of a custom step.
    Returns the name of the input column of a custom step.
    getStringValueAt(long rowIndex)
    Returns the String value at the specified row index of the input column.
    Returns the data tags associated with the column.
    getValueAt(long rowIndex)
    Returns the cell value at the specified row index of the input column.
  • Method Details

    • getId

      String getId()
      Returns the ID of the input column of a custom step.
      Returns:
      ID of the input column
    • getName

      String getName()
      Returns the name of the input column of a custom step.
      Returns:
      Name of the input column
    • getValueAt

      CellValue getValueAt(long rowIndex)
      Returns the cell value at the specified row index of the input column.
      Parameters:
      rowIndex - Row index of value to be retrieved
      Returns:
      CellValue at specified row
    • getStringValueAt

      String getStringValueAt(long rowIndex)
      Returns the String value at the specified row index of the input column.
      Parameters:
      rowIndex - Row index of value to be retrieved
      Returns:
      String value at specified row
    • getTags

      Collection<String> getTags()
      Returns the data tags associated with the column.
      Returns:
      Collection of data tags associated with the column
      Since:
      2.3.0