本文整理汇总了Java中org.semanticweb.owlapi.model.OWLLiteral.parseInteger方法的典型用法代码示例。如果您正苦于以下问题:Java OWLLiteral.parseInteger方法的具体用法?Java OWLLiteral.parseInteger怎么用?Java OWLLiteral.parseInteger使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.semanticweb.owlapi.model.OWLLiteral
的用法示例。
在下文中一共展示了OWLLiteral.parseInteger方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getPublicationCount
import org.semanticweb.owlapi.model.OWLLiteral; //导入方法依赖的package包/类
public int getPublicationCount(OWLOntology onto, OWLNamedIndividual indiv){
OWLObjectProperty author_of = onto.getOWLOntologyManager().getOWLDataFactory().
getOWLObjectProperty(IRI.create("http://islab.di.unimi.it/imoaei2015#author_of"));
OWLDataProperty publication_count = onto.getOWLOntologyManager().getOWLDataFactory().
getOWLDataProperty(IRI.create("http://islab.di.unimi.it/imoaei2015#publication_count"));
Set<OWLIndividual> publications = indiv.getObjectPropertyValues(author_of, onto);
Set<OWLLiteral> data_values;
try {
//They have not been grouped or there are not publications
if (publications.size()>1 || publications.isEmpty()){
return publications.size();
}
for (OWLIndividual pub : publications){
data_values = pub.getDataPropertyValues(publication_count, onto);
for (OWLLiteral value : data_values){
//if (value.isInteger()){
return value.parseInteger();
//}
}
}
return 1;
}
catch (Exception e){
LogOutput.printError("Error extracting information about publications.");
return 0;
}
}