use of org.eclipse.rdf4j.query.parser.sparql.ast.ASTCreate 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;
}
Aggregations