All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.protege.webprotege.persistence.IriToStringConverter Maven / Gradle / Ivy

The newest version!
package edu.stanford.protege.webprotege.persistence;

import org.semanticweb.owlapi.model.IRI;
import org.springframework.core.convert.converter.Converter;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 2022-01-04
 */
public class IriToStringConverter implements Converter {

    @Override
    public String convert(IRI iri) {
        return iri.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy