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

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

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

/** Convert to OWLObjectProperty interface. */
public interface AsOWLObjectProperty {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy