com.scudata.ide.spl.etl.element.AGroup2 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;
/**
* ?????????༭ A.group(x:F,...;y:G,??)
* ??????ǰA??ʾ???
*
* @author Joancy
*
*/
public class AGroup2 extends AGroups {
/**
* ??ȡ???ڽ???༭?IJ?????Ϣ?б?
*/
public ParamInfoList getParamInfoList() {
ParamInfoList paramInfos = new ParamInfoList();
ParamInfo.setCurrent(AGroups.class, this);
paramInfos.add(new ParamInfo("groupExps",EtlConsts.INPUT_FIELDDEFINE_EXP_FIELD));
paramInfos.add(new ParamInfo("aggregateExps",EtlConsts.INPUT_FIELDDEFINE_EXP_FIELD,true));
String group = "options";
paramInfos.add(group, new ParamInfo("o", Consts.INPUT_CHECKBOX));
paramInfos.add(group, new ParamInfo("n", Consts.INPUT_CHECKBOX));
paramInfos.add(group, new ParamInfo("u", Consts.INPUT_CHECKBOX));
paramInfos.add(group, new ParamInfo("i", Consts.INPUT_CHECKBOX));
paramInfos.add(group, new ParamInfo("zero", Consts.INPUT_CHECKBOX));
paramInfos.add(group, new ParamInfo("h", Consts.INPUT_CHECKBOX));
return paramInfos;
}
/**
* ??ȡ????????SPL????ʽ?ĺ?????
*/
public String getFuncName(){
return "group";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy