Package com.lingbobu.flashdb.transfer.impl

Examples of com.lingbobu.flashdb.transfer.impl.InputFileXml


  /**
   * 基于XML文件的数据来源
   */
  public static class FuncXml {
    public InputFileXml call(String filePath, boolean multiItemsPerFile, String itemXPathExpr, String listFields, String listmapFields, String[] fieldsAndXPath) {
      return new InputFileXml(filePath, multiItemsPerFile, itemXPathExpr, listFields, listmapFields, fieldsAndXPath);
    }
View Full Code Here


    public InputFileXml call(String filePath, boolean multiItemsPerFile, String itemXPathExpr, String listFields, String listmapFields, String[] fieldsAndXPath) {
      return new InputFileXml(filePath, multiItemsPerFile, itemXPathExpr, listFields, listmapFields, fieldsAndXPath);
    }
   
    public InputFileXml call(String filePath, boolean multiItemsPerFile, String itemXPathExpr, String listFields, String listmapFields) {
      return new InputFileXml(filePath, multiItemsPerFile, itemXPathExpr, listFields, listmapFields);
    }
View Full Code Here

    public InputFileXml call(String filePath, boolean multiItemsPerFile, String itemXPathExpr, String listFields, String listmapFields) {
      return new InputFileXml(filePath, multiItemsPerFile, itemXPathExpr, listFields, listmapFields);
    }
   
    public InputFileXml call(String filePath, boolean multiItemsPerFile, String itemXPathExpr) {
      return new InputFileXml(filePath, multiItemsPerFile, itemXPathExpr);
    }
View Full Code Here

TOP

Related Classes of com.lingbobu.flashdb.transfer.impl.InputFileXml

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.