fr.inria.corese.kgram.core.Query.addError()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(3.0k)|赞(0)|评价(0)|浏览(75)

本文整理了Java中fr.inria.corese.kgram.core.Query.addError方法的一些代码示例,展示了Query.addError的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.addError方法的具体详情如下:
包路径:fr.inria.corese.kgram.core.Query
类名称:Query
方法名:addError

Query.addError介绍

暂无

代码示例

代码示例来源:origin: fr.inria.corese/corese-core

} catch (IOException e) {
  logger.error(q.getAST().toString(), e);
  gq.addError(SERVICE_ERROR, e);
} catch (ParserConfigurationException e) {

代码示例来源:origin: Wimmics/corese

} catch (IOException e) {
  logger.error(q.getAST().toString(), e);
  gq.addError(SERVICE_ERROR, e);
} catch (ParserConfigurationException e) {

代码示例来源:origin: Wimmics/corese

void bindings(Query q, ASTQuery ast) {
    Exp bind = bindings(ast.getValues());
    if (bind == null) {
      q.setCorrect(false);
      q.addError("Value Bindings: ", "#values != #variables");
    } else {
      q.setValues(bind);
      if (ast.getValues().isMoved()) {
        //q.setTemplateMappings(bind.getMappings());
        q.getValues().setPostpone(true);
      } 
//            else {
//                q.setMappings(bind.getMappings());
//                q.setBindingNodes(bind.getNodeList());
//            }
    }
  }

代码示例来源:origin: fr.inria.corese/compiler

void bindings(Query q, ASTQuery ast) {
    Exp bind = bindings(ast.getValues());
    if (bind == null) {
      q.setCorrect(false);
      q.addError("Value Bindings: ", "#values != #variables");
    } else {
      q.setValues(bind);
      if (ast.getValues().isMoved()) {
        //q.setTemplateMappings(bind.getMappings());
        q.getValues().setPostpone(true);
      } 
//            else {
//                q.setMappings(bind.getMappings());
//                q.setBindingNodes(bind.getNodeList());
//            }
    }
  }

代码示例来源:origin: Wimmics/corese

/**
 * delete data {<a> ex:p <b>} Ground pattern (no variable) Processed by
 * Construct as a delete query in the target graph
 *
 */
Mappings delete(Query q, Composite ope, Mapping m) {
  ASTQuery ast = createAST(q, ope);
  ast.setDelete(true);
  Exp exp = ope.getData();
  if (!exp.validateData(ast) || !exp.validateDelete()) {
    q.setCorrect(false);
    q.addError("** Update: delete not valid: ", exp);
    return Mappings.create(q);
  }
  if (exp != null) {
    ast.setBody(BasicGraphPattern.create());
    ast.setDelete(exp);
    ast.setDeleteData(true);
  }
  return update(q, ast, m);
}

代码示例来源:origin: fr.inria.corese/corese-core

/**
 * delete data {<a> ex:p <b>} Ground pattern (no variable) Processed by
 * Construct as a delete query in the target graph
 *
 */
Mappings delete(Query q, Composite ope, Mapping m) {
  ASTQuery ast = createAST(q, ope);
  ast.setDelete(true);
  Exp exp = ope.getData();
  if (!exp.validateData(ast) || !exp.validateDelete()) {
    q.setCorrect(false);
    q.addError("** Update: delete not valid: ", exp);
    return Mappings.create(q);
  }
  if (exp != null) {
    ast.setBody(BasicGraphPattern.create());
    ast.setDelete(exp);
    ast.setDeleteData(true);
  }
  return update(q, ast, m);
}

代码示例来源:origin: fr.inria.corese/corese-core

q.addError("Load error: ", ope.getURI() + "\n" + e);

代码示例来源:origin: Wimmics/corese

q.addError("Load error: ", ope.getURI() + "\n" + e);

代码示例来源:origin: fr.inria.corese/corese-core

q.addError("Error: Blank Node in Delete", "");
return Mappings.create(q);

代码示例来源:origin: Wimmics/corese

q.addError("Error: Blank Node in Delete", "");
return Mappings.create(q);

代码示例来源:origin: fr.inria.corese/kgram

addError(Message.get(Message.UNDEF_VAR), var);

相关文章

微信公众号

最新文章

更多