org.eclipse.rdf4j.model.util.Models.objectIRIs()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(2.1k)|赞(0)|评价(0)|浏览(128)

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

Models.objectIRIs介绍

[英]Retrieves all object IRI values from the statements in the given model.
[中]从给定模型中的语句检索所有对象IRI值。

代码示例

代码示例来源:origin: eclipse/rdf4j

/**
 * Retrieve all property IRI values for the supplied subject and property from the given model.
 *
 * @param m
 *         the model from which to retrieve the property IRI values.
 * @param subject
 *         the subject resource for which to retrieve all property IRI values.
 * @param property
 *         the property for which to retrieve all IRI values.
 * @param contexts
 *         the contexts from which to retrieve the property values. Optional vararg argument. If not
 *         specified the operations works on the entire Model.
 * @return a Set of all property IRI values for the supplied input. The resulting set may be empty.
 */
public static Set<IRI> getPropertyIRIs(Model m, Resource subject, IRI property, Resource... contexts) {
  Objects.requireNonNull(m, "model may not be null");
  Objects.requireNonNull(subject, "subject may not be null");
  Objects.requireNonNull(property, "property may not be null");
  return objectIRIs(m.filter(subject, property, null, contexts));
}

代码示例来源:origin: org.eclipse.rdf4j/rdf4j-client

/**
 * Retrieve all property IRI values for the supplied subject and property from the given model.
 *
 * @param m
 *         the model from which to retrieve the property IRI values.
 * @param subject
 *         the subject resource for which to retrieve all property IRI values.
 * @param property
 *         the property for which to retrieve all IRI values.
 * @param contexts
 *         the contexts from which to retrieve the property values. Optional vararg argument. If not
 *         specified the operations works on the entire Model.
 * @return a Set of all property IRI values for the supplied input. The resulting set may be empty.
 */
public static Set<IRI> getPropertyIRIs(Model m, Resource subject, IRI property, Resource... contexts) {
  Objects.requireNonNull(m, "model may not be null");
  Objects.requireNonNull(subject, "subject may not be null");
  Objects.requireNonNull(property, "property may not be null");
  return objectIRIs(m.filter(subject, property, null, contexts));
}

相关文章