com.scudata.expression.fn.convert.IsUpper 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.expression.fn.convert;
import com.scudata.common.MessageManager;
import com.scudata.common.RQException;
import com.scudata.dm.Context;
import com.scudata.expression.Function;
import com.scudata.resources.EngineMessage;
/**
* isupper(string) ?ж??ַ???string?Ƿ?ȫ?ɴ?д??ĸ???ɡ?
* ???stringΪ??????????Ϊascii?룬?ж????Ӧ???ַ??Ƿ?Ϊ??д??ĸ??
* @author runqian
*
*/
public class IsUpper extends Function {
/**
* ??????ʽ????Ч?ԣ???Ч???׳??쳣
*/
public void checkValidity() {
if (param == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("isupper" + mm.getMessage("function.missingParam"));
} else if (!param.isLeaf()) {
MessageManager mm = EngineMessage.get();
throw new RQException("isupper" + mm.getMessage("function.invalidParam"));
}
}
public Object calculate(Context ctx) {
Object result1 = param.getLeafExpression().calculate(ctx);
if (result1 instanceof String) {
String str = (String)result1;
if (str.length() == 0) return Boolean.FALSE;
for (int i = 0, len = str.length(); i < len; ++i) {
char c = str.charAt(i);
if (c < 'A' || c > 'Z') {
return Boolean.FALSE;
}
}
return Boolean.TRUE;
} else if (result1 instanceof Number) {
int c = ((Number)result1).intValue();
if (c >= 'A' && c <= 'Z') {
return Boolean.TRUE;
} else {
return Boolean.FALSE;
}
} else {
return Boolean.FALSE;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy