use of org.eclipse.rdf4j.query.parser.serql.ast.ASTCompareAll in project rdf4j by eclipse.
the class QueryModelBuilder method visit.
@Override
public CompareAll visit(ASTCompareAll node, Object data) throws VisitorException {
ValueExpr valueExpr = (ValueExpr) node.getLeftOperand().jjtAccept(this, null);
TupleExpr tupleExpr = (TupleExpr) node.getRightOperand().jjtAccept(this, null);
CompareOp op = node.getOperator().getValue();
return new CompareAll(valueExpr, tupleExpr, op);
}
Aggregations