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

edu.stanford.protege.webprotege.persistence.StringToIriConverter 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 StringToIriConverter implements Converter {

    @Override
    public IRI convert(String s) {
        return IRI.create(s);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy