本文整理了Java中com.hp.hpl.jena.query.Query.addGraphURI
方法的一些代码示例,展示了Query.addGraphURI
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.addGraphURI
方法的具体详情如下:
包路径:com.hp.hpl.jena.query.Query
类名称: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) ;
内容来源于网络,如有侵权,请联系作者删除!