use of org.apache.stanbol.rules.manager.atoms.IObjectAtom in project stanbol by apache.
the class RuleParserImpl method namespaceAtom.
public final NamespaceAtom namespaceAtom() throws ParseException {
IObjectAtom uri;
jj_consume_token(NAMESPACE);
jj_consume_token(LPAR);
uri = iObject();
jj_consume_token(RPAR);
{
if (true)
return new NamespaceAtom(uri);
}
throw new Error("Missing return statement in function");
}
use of org.apache.stanbol.rules.manager.atoms.IObjectAtom in project stanbol by apache.
the class RuleParserImpl method typedLiteral.
public final IObjectAtom typedLiteral() throws ParseException {
IObjectAtom type = null;
switch((jj_ntk == -1) ? jj_ntk() : jj_ntk) {
case APOX:
jj_consume_token(APOX);
jj_consume_token(APOX);
type = reference();
break;
default:
jj_la1[14] = jj_gen;
}
{
if (true)
return type;
}
throw new Error("Missing return statement in function");
}
use of org.apache.stanbol.rules.manager.atoms.IObjectAtom in project stanbol by apache.
the class RuleParserImpl method localnameAtom.
public final LocalNameAtom localnameAtom() throws ParseException {
IObjectAtom uri;
jj_consume_token(LOCALNAME);
jj_consume_token(LPAR);
uri = iObject();
jj_consume_token(RPAR);
{
if (true)
return new LocalNameAtom(uri);
}
throw new Error("Missing return statement in function");
}
use of org.apache.stanbol.rules.manager.atoms.IObjectAtom in project stanbol by apache.
the class RuleParserImpl method newIRIAtom.
public final NewIRIAtom newIRIAtom() throws ParseException {
IObjectAtom arg1;
StringFunctionAtom arg2;
jj_consume_token(NEW_IRI);
jj_consume_token(LPAR);
arg1 = iObject();
jj_consume_token(COMMA);
arg2 = stringFunctionAtom();
jj_consume_token(RPAR);
{
if (true)
return new NewIRIAtom(arg1, arg2);
}
throw new Error("Missing return statement in function");
}
use of org.apache.stanbol.rules.manager.atoms.IObjectAtom in project stanbol by apache.
the class RuleParserImpl method iObject.
public final IObjectAtom iObject() throws ParseException {
IObjectAtom uri;
switch((jj_ntk == -1) ? jj_ntk() : jj_ntk) {
case NOTEX:
case VARIABLE:
case BNODE:
uri = variable();
{
if (true)
return uri;
}
break;
case VAR:
case URI:
uri = reference();
{
if (true)
return uri;
}
break;
default:
jj_la1[11] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
Aggregations