use of org.apache.stanbol.rules.manager.atoms.LowerCaseAtom in project stanbol by apache.
the class RuleParserImpl method lowerCaseAtom.
public final LowerCaseAtom lowerCaseAtom() throws ParseException {
StringFunctionAtom arg;
jj_consume_token(LOWERCASE);
jj_consume_token(LPAR);
arg = stringFunctionAtom();
jj_consume_token(RPAR);
{
if (true)
return new LowerCaseAtom(arg);
}
throw new Error("Missing return statement in function");
}
Aggregations