com.scudata.ide.spl.etl.element.XXlsExport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.ide.spl.etl.element;
import com.scudata.chart.Consts;
import com.scudata.ide.spl.etl.EtlConsts;
import com.scudata.ide.spl.etl.ParamInfo;
import com.scudata.ide.spl.etl.ParamInfoList;
/**
* ?????????༭ xls.xlsexport()
* ??????ǰX??ʾ xls?ļ?????
*
* @author Joancy
*
*/
public class XXlsExport extends FXlsExport {
/**
* ??ȡ???ڽ???༭?IJ?????Ϣ?б?
*/
public ParamInfoList getParamInfoList() {
ParamInfoList paramInfos = new ParamInfoList();
ParamInfo.setCurrent(FXlsExport.class, this);
paramInfos.add(new ParamInfo("aOrCs",EtlConsts.INPUT_CELLAORCS,true));
paramInfos.add(new ParamInfo("exportFields", EtlConsts.INPUT_FIELDDEFINE_EXP_FIELD));
paramInfos.add(new ParamInfo("sheet"));
String group = "options";
paramInfos.add(group, new ParamInfo("t", Consts.INPUT_CHECKBOX));
return paramInfos;
}
/**
* ??ȡ??????
* ???͵ij???????Ϊ
* EtlConsts.TYPE_XXX
* @return EtlConsts.TYPE_XLS
*/
public byte getParentType() {
return EtlConsts.TYPE_XLS;
}
/**
* ??ȡ?ú????ķ???????
* @return EtlConsts.TYPE_EMPTY
*/
public byte getReturnType() {
return EtlConsts.TYPE_EMPTY;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy