Interface ParserConfiguration


public interface ParserConfiguration
Parser configuration of a custom parser. Used by ParserConfigurationBuilder
Since:
2.0.0
  • Method Details

    • getParserId

      String getParserId()
      Returns the custom parser ID.
      Returns:
      ID of the custom parser
    • getSupportedFileExtensions

      List<SupportedFileExtension> getSupportedFileExtensions()
      Returns the file extensions that the custom parser supports.
      Returns:
      List of supported file extensions
    • getParameterDefinitions

      List<ParameterDefinition> getParameterDefinitions()
      Returns the custom parser parameter definitions.
      Returns:
      List of custom parser parameter definitions
    • getParserProcessor

      ParserProcessor getParserProcessor()
      Returns the processor to be used for the custom parser.
      Returns:
      Processor to be used for the custom parser