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

org.semanticweb.owlapi.model.AsOWLNamedIndividual Maven / Gradle / Ivy

There is a newer version: 5.5.1
Show newest version
package org.semanticweb.owlapi.model;

/**
 * Convert to OWLNamedIndividual interface.
 */
public interface AsOWLNamedIndividual {

    /**
     * A convenience method that determines if this entity is an
     * OWLNamedIndividual.
     *
     * @return {@code true} if this entity is an OWLNamedIndividual, otherwise {@code false}
     */
    default boolean isOWLNamedIndividual() {
        return false;
    }

    /**
     * A convenience method that obtains this entity as an OWLNamedIndividual
     * (in order to avoid explicit casting).
     *
     * @return The entity as an OWLNamedIndividual.
     * @throws OWLRuntimeException if this entity is not an OWLIndividual (check with the
     * isOWLIndividual method first).
     */
    default OWLNamedIndividual asOWLNamedIndividual() {
        if (isOWLNamedIndividual()) {
            return (OWLNamedIndividual) this;
        }
        throw new ClassCastException(getClass().getName() + "is not an OWLNamedIndividual");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy