com.hp.hpl.jena.graph.Triple.createMatch()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(108)

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

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));
}

相关文章