本文整理了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
[英]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);
内容来源于网络,如有侵权,请联系作者删除!