Search in sources :

Example 1 with Create

use of org.eclipse.rdf4j.query.algebra.Create in project rdf4j by eclipse.

the class UpdateExprBuilder method visit.

@Override
public Create visit(ASTCreate node, Object data) throws VisitorException {
    ValueConstant graph = (ValueConstant) node.jjtGetChild(0).jjtAccept(this, data);
    Create create = new Create(graph);
    create.setSilent(node.isSilent());
    return create;
}
Also used : Create(org.eclipse.rdf4j.query.algebra.Create) ASTCreate(org.eclipse.rdf4j.query.parser.sparql.ast.ASTCreate) ValueConstant(org.eclipse.rdf4j.query.algebra.ValueConstant)

Aggregations

Create (org.eclipse.rdf4j.query.algebra.Create)1 ValueConstant (org.eclipse.rdf4j.query.algebra.ValueConstant)1 ASTCreate (org.eclipse.rdf4j.query.parser.sparql.ast.ASTCreate)1