use of org.eclipse.rdf4j.query.parser.serql.ast.ASTLangMatches in project rdf4j by eclipse.
the class QueryModelBuilder method visit.
@Override
public LangMatches visit(ASTLangMatches node, Object data) throws VisitorException {
ValueExpr tag = (ValueExpr) node.getLanguageTag().jjtAccept(this, null);
ValueExpr range = (ValueExpr) node.getLanguageRange().jjtAccept(this, null);
return new LangMatches(tag, range);
}
Aggregations