Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| package org.monarchinitiative.owlsim.kb; | |
| import org.semanticweb.owlapi.model.IRI; | |
| /** | |
| * Maps URIs/IRIs onto shortform IDs. | |
| * | |
| * @author cjm | |
| * | |
| */ | |
| public interface CURIEMapper { | |
| /** | |
| * @param iri | |
| * @return Short form (aka ID, CURIE) | |
| */ | |
| public String getShortForm(IRI iri); | |
| /** | |
| * @param id | |
| * @return expanded IRI | |
| */ | |
| public IRI getExpandedForm(String id); | |
| } |