Interface ParserTableDefinition


public interface ParserTableDefinition
Table definition of a custom parser.
Since:
2.0.0
  • 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

      Returns the list of column definitions of the custom parser.
      Returns:
      List of column definitions of the custom parser
    • addColumn

      void addColumn(ParserColumnDefinition columnDefinition)
      Adds a column definition to the parser table definition.
      Parameters:
      columnDefinition - Column definition of the custom parser to be added