Interface GeneratorInputColumn
public interface GeneratorInputColumn
The input column of an input node for a file generator.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetId()
Returns the ID of the input column of a custom file generator.getName()
Returns the name of the input column of a custom file generator.getStringValueAt
(long rowIndex) Returns the String value at the specified row index of the input column.getTags()
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 file generator.- Returns:
- ID of the input column
-
getName
String getName()Returns the name of the input column of a custom file generator.- Returns:
- Name of the input column
-
getValueAt
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
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
-