本文整理了Java中com.hp.hpl.jena.graph.Triple.createMatch()
方法的一些代码示例,展示了Triple.createMatch()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Triple.createMatch()
方法的具体详情如下:
包路径:com.hp.hpl.jena.graph.Triple
类名称:Triple
方法名:createMatch
暂无
代码示例来源:origin: com.hp.hpl.jena/arq
protected ExtendedIterator<Triple> graphBaseFind( Node s, Node p, Node o )
{ return find( Triple.createMatch( s, p, o ) ); }
代码示例来源:origin: org.apache.clerezza.ext/org.apache.jena.jena-core
protected ExtendedIterator<Triple> graphBaseFind( Node s, Node p, Node o )
{ return find( Triple.createMatch( s, p, o ) ); }
代码示例来源:origin: spaziocodice/SolRDF
@Override
protected void deleteFromNamedGraph(final Node g, final Node s, final Node p, final Node o) {
if (containsGraph(g)) {
getGraph(g).delete(Triple.createMatch(s, p, o));
}
}
代码示例来源:origin: org.apache.clerezza.ext/org.apache.jena.jena-core
/**
* Return the triple pattern as a triple match
*/
public TripleMatch asTripleMatch() {
return Triple.createMatch(toMatch(subject),
toMatch(predicate),
toMatch(object));
}
内容来源于网络,如有侵权,请联系作者删除!