Interface DecisionTableParser

All Known Implementing Classes:
CsvParser, ExcelParser

public interface DecisionTableParser
Generic interface for all input parsers.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Parse a file, store the resulting rulebase.
    void
    Parse an input stream, store the resulting rulebase.
  • Method Details

    • parseFile

      void parseFile(InputStream inStream)
      Parse an input stream, store the resulting rulebase.
    • parseFile

      void parseFile(File file)
      Parse a file, store the resulting rulebase.