com.hp.hpl.jena.rdf.model.Model.removeAllReifications()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(1.1k)|赞(0)|评价(0)|浏览(122)

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

Model.removeAllReifications介绍

[英]Remove all reifications (ie implicit reification quads) of s.
[中]移除所有的物化(即隐式物化四元组)。

代码示例

代码示例来源:origin: fr.inria.eventcloud/eventcloud-api

/**
 * {@inheritDoc}
 */
@Override
public void removeAllReifications(Statement s) {
  super.object.removeAllReifications(s);
}

代码示例来源:origin: bio2rdf/bio2rdf-scripts

public void removeAllReifications(Statement s) {
  model.removeAllReifications(s);
}

代码示例来源:origin: org.ow2.weblab.core.helpers/rdf-helper-jena

while (sit.hasNext()) {
    final Statement s = sit.nextStatement();
    this.model.removeAllReifications(s);
} else {
  final Statement s = this.buildTempStatement(subj, pred, obj);
  this.model.removeAllReifications(s);
  this.model.remove(s);
    this.model.removeAllReifications(s);
    this.model.remove(s);

代码示例来源:origin: org.nuxeo.ecm.platform/nuxeo-platform-relations-jena-plugin

graph.removeAllReifications(jenaStmt);

相关文章

Model类方法