com.hp.hpl.jena.query.Query.addGraphURI()方法的使用及代码示例

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

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

Query.addGraphURI介绍

[英]Location of the source for the data. If the model is not set, then the QueryEngine will attempt to load the data from these URIs into the default (unamed) graph.
[中]数据源的位置。如果未设置模型,则查询引擎将尝试将这些URI中的数据加载到默认(未命名)图中。

代码示例

代码示例来源:origin: org.apache.clerezza.ext/org.apache.jena.jena-arq

final public void DefaultGraphClause() throws ParseException {
              String iri ;
 iri = SourceSelector();
 // This checks for duplicates
 getQuery().addGraphURI(iri) ;
}

代码示例来源:origin: com.hp.hpl.jena/arq

final public void DefaultGraphClause() throws ParseException {
              String iri ;
 iri = SourceSelector();
 // This checks for duplicates
 getQuery().addGraphURI(iri) ;
}

代码示例来源:origin: com.hp.hpl.jena/arq

final public void DefaultGraphClause() throws ParseException {
              String iri ;
 iri = SourceSelector();
 // This checks for duplicates
 getQuery().addGraphURI(iri) ;
}

代码示例来源:origin: org.apache.clerezza.ext/org.apache.jena.jena-arq

final public void DefaultGraphClause() throws ParseException {
              String iri ;
 iri = SourceSelector();
 // This checks for duplicates
 getQuery().addGraphURI(iri) ;
}

代码示例来源:origin: com.hp.hpl.jena/arq

final public void DefaultGraphClause() throws ParseException {
              String iri ;
 iri = SourceSelector();
 // This checks for duplicates
 getQuery().addGraphURI(iri) ;
}

代码示例来源:origin: org.apache.clerezza.ext/org.apache.jena.jena-arq

final public void DefaultGraphClause() throws ParseException {
              String iri ;
 iri = SourceSelector();
 // This checks for duplicates
 getQuery().addGraphURI(iri) ;
}

代码示例来源:origin: com.github.ansell.pellet/pellet-query

public final void defaultGraphClause(Query q) throws RecognitionException {
  Node s = null;
  try {
    // com/clarkparsia/sparqlowl/parser/antlr/SparqlOwlTreeARQ.g:729:2: ( ^( DEFAULT_GRAPH s= sourceSelector ) )
    // com/clarkparsia/sparqlowl/parser/antlr/SparqlOwlTreeARQ.g:729:4: ^( DEFAULT_GRAPH s= sourceSelector )
    {
    match(input,DEFAULT_GRAPH,FOLLOW_DEFAULT_GRAPH_in_defaultGraphClause1452); 
    match(input, Token.DOWN, null); 
    pushFollow(FOLLOW_sourceSelector_in_defaultGraphClause1456);
    s=sourceSelector();
    state._fsp--;
    match(input, Token.UP, null); 
     q.addGraphURI( s.getURI() ); 
    }
  }
    catch( RecognitionException rce ) {
      throw rce;
    }
  finally {
  }
  return ;
}
// $ANTLR end "defaultGraphClause"

代码示例来源:origin: com.hp.hpl.jena/arq

q.addGraphURI(source) ;

相关文章