Package com.sematext.searchschemer.reader

Examples of com.sematext.searchschemer.reader.IndexStructureReader


   *           throw when I/O error occurs
   */
  private void run(String[] args) throws IOException {
    SearchSchemerArguments arguments = CommandLineReader.parse(args);
    if (arguments != null) {
      IndexStructureReader reader = IndexStructureReaderFactory.getReader(arguments.getInputType());
      IndexStructureWriter writer = IndexStructureWriterFactory.getWriter(arguments.getOutputType());
      writer.write(reader.read(arguments.getInputFileName()), arguments.getOutputFileName());
    }
  }
View Full Code Here

TOP

Related Classes of com.sematext.searchschemer.reader.IndexStructureReader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.