Interface DecisionTableParser

  • All Known Implementing Classes:
    CsvParser, ExcelParser

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void parseFile​(java.io.File file)
      Parse a file, store the resulting rulebase.
      void parseFile​(java.io.InputStream inStream)
      Parse an input stream, store the resulting rulebase.
    • Method Detail

      • parseFile

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

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