我正在尝试从现有本体中获取个人的数据属性值。我正在使用OWL API。 例如我的个体名称:
`
Set<OWLLiteral> literalA = John.getDataPropertyValues(name, ontology);
I've got this error :
> The method getDataPropertyValues(OWLDataPropertyExpression,
> OWLOntology) is undefined for the type OWLIndividua
`
这应该让我:"John"
我已经在该网站上检查了可以用来检索信息Interface OWLIndividual的方法,它给了我getDataPropertyValues
。不幸的是,我无法使其工作。
有什么主意吗? 谢谢您的帮助