Package org.semanticweb.owlapi.model
Interface OWLOntologyIRIMapper
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AutoIRIMapper
,CommonBaseIRIMapper
,OWLZipClosureIRIMapper
,SimpleIRIMapper
,ZipIRIMapper
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
The interface to an object that is capable of mapping ontology IRIs to
document IRIs.
- Since:
- 2.0.0
- Author:
- Matthew Horridge, The University Of Manchester, Bio-Health Informatics Group
-
Method Summary
Modifier and TypeMethodDescriptiongetDocumentIRI
(IRI ontologyIRI) Given an ontology IRI, this method maps the ontology IRI to a document IRI.
-
Method Details
-
getDocumentIRI
Given an ontology IRI, this method maps the ontology IRI to a document IRI.- Parameters:
ontologyIRI
- The ontology IRI to be mapped.- Returns:
- The document IRI of the ontology, or
null
if the mapper doesn't have mapping for the specified ontology IRI.
-