当前位置: 首页>>代码示例>>Java>>正文


Java OWLLiteral.parseInteger方法代码示例

本文整理汇总了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;
	}
	
}
 
开发者ID:ernestojimenezruiz,项目名称:logmap-matcher,代码行数:37,代码来源:OAEI2015InstanceProcessing.java


注:本文中的org.semanticweb.owlapi.model.OWLLiteral.parseInteger方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。