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

org.coode.oppl.entity.OWLEntityRenderer Maven / Gradle / Ivy

package org.coode.oppl.entity;

import org.semanticweb.owlapi.model.OWLEntity;

/** Renders an OWLEntity into a String.
 * 
 * @author Luigi Iannone */
public interface OWLEntityRenderer {
    /** Renders an OWLEntity into a String.
     * 
     * @param entity
     *            the OWLEntity to render. Cannot be {@code null}.
     * @return the String rendering of the input OWLEntity.
     * @throws NullPointerException
     *             when the input is {@code null}. */
    String render(OWLEntity entity);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy