com.scudata.ide.spl.etl.element.CsNew 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.ide.spl.etl.EtlConsts;
import com.scudata.ide.spl.etl.ParamInfoList;
/**
* ?????????༭ CS.new()
* ??????ǰCs??ʾ?α?
*
* @author Joancy
*
*/
public class CsNew extends ANew {
/**
* ??ȡ??????
* ???͵ij???????Ϊ
* EtlConsts.TYPE_XXX
* @return EtlConsts.TYPE_CURSOR
*/
public byte getParentType() {
return EtlConsts.TYPE_CURSOR;
}
/**
* ??ȡ?ú????ķ???????
* @return EtlConsts.TYPE_CURSOR
*/
public byte getReturnType() {
return EtlConsts.TYPE_CURSOR;
}
/**
* ??ȡ???ڽ???༭?IJ?????Ϣ?б?
*/
public ParamInfoList getParamInfoList() {
ParamInfoList paramInfos = super.getParamInfoList();
// ?α?û??mѡ??
String group = "options";
paramInfos.delete(group, "m");
return paramInfos;
}
/**
* ??ȡ????????SPL????ʽ??ѡ?
*/
public String optionString(){
StringBuffer options = new StringBuffer();
if(i){
options.append("i");
}
return options.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy