Interface ParserTableDefinition
public interface ParserTableDefinition
Table definition of a custom parser.
- Since:
- 2.0.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addColumn
(ParserColumnDefinition columnDefinition) Adds a column definition to the parser table definition.Returns the list of column definitions of the custom parser.Returns the description of the table definition.getId()
Returns the ID of the table definition.getName()
Returns the name of the table definition.
-
Method Details
-
getId
String getId()Returns the ID of the table definition.- Returns:
- ID of the table definition.
-
getDescription
String getDescription()Returns the description of the table definition.- Returns:
- Description of the table definition.
-
getName
String getName()Returns the name of the table definition.- Returns:
- Name of the table definition.
-
getColumns
List<ParserColumnDefinition> getColumns()Returns the list of column definitions of the custom parser.- Returns:
- List of column definitions of the custom parser
-
addColumn
Adds a column definition to the parser table definition.- Parameters:
columnDefinition
- Column definition of the custom parser to be added
-