Package org.semanticweb.owlapi.reasoner

Examples of org.semanticweb.owlapi.reasoner.ReasonerInternalException


     *         returned by calling
     *         {@link #getEquivalentDataProperties(org.semanticweb.owlapi.model.OWLDataProperty)}
     *         with a parameter of <code>owl:topDataProperty</code>.
     */
    public Node<OWLDataProperty> getTopDataPropertyNode() {
        throw new ReasonerInternalException(
                "getTopDataPropertyNode not implemented");
    }
View Full Code Here


     *         by calling
     *         {@link #getEquivalentDataProperties(org.semanticweb.owlapi.model.OWLDataProperty)}
     *         with a parameter of <code>owl:bottomDataProperty</code>.
     */
    public Node<OWLDataProperty> getBottomDataPropertyNode() {
        throw new ReasonerInternalException(
                "getBottomDataPropertyNode not implemented");
    }
View Full Code Here

     */
    public NodeSet<OWLDataProperty> getSubDataProperties(OWLDataProperty pe,
            boolean direct) throws InconsistentOntologyException,
            FreshEntitiesException, ReasonerInterruptedException,
            TimeOutException {
        throw new ReasonerInternalException(
                "getSubDataProperties not implemented");
    }
View Full Code Here

     */
    public NodeSet<OWLDataProperty> getSuperDataProperties(OWLDataProperty pe,
            boolean direct) throws InconsistentOntologyException,
            FreshEntitiesException, ReasonerInterruptedException,
            TimeOutException {
        throw new ReasonerInternalException(
                "getSuperDataProperties not implemented");
    }
View Full Code Here

     *             See {@link #getTimeOut()}.
     */
    public Node<OWLDataProperty> getEquivalentDataProperties(OWLDataProperty pe)
            throws InconsistentOntologyException, FreshEntitiesException,
            ReasonerInterruptedException, TimeOutException {
        throw new ReasonerInternalException(
                "getEquivalentDataProperties not implemented");
    }
View Full Code Here

     */
    public NodeSet<OWLDataProperty> getDisjointDataProperties(
            OWLDataPropertyExpression pe) throws InconsistentOntologyException,
            FreshEntitiesException, ReasonerInterruptedException,
            TimeOutException {
        throw new ReasonerInternalException(
                "getDisjointDataProperties not implemented");
    }
View Full Code Here

     */
    public NodeSet<OWLClass> getDataPropertyDomains(OWLDataProperty pe,
            boolean direct) throws InconsistentOntologyException,
            FreshEntitiesException, ReasonerInterruptedException,
            TimeOutException {
        throw new ReasonerInternalException(
                "getDataPropertyDomains not implemented");
    }
View Full Code Here

     *             See {@link #getTimeOut()}.
     */
    public NodeSet<OWLClass> getTypes(OWLNamedIndividual ind, boolean direct)
            throws InconsistentOntologyException, FreshEntitiesException,
            ReasonerInterruptedException, TimeOutException {
        throw new ReasonerInternalException("getTypes not implemented");
    }
View Full Code Here

     */
    public NodeSet<OWLNamedIndividual> getObjectPropertyValues(
            OWLNamedIndividual ind, OWLObjectPropertyExpression pe)
            throws InconsistentOntologyException, FreshEntitiesException,
            ReasonerInterruptedException, TimeOutException {
        throw new ReasonerInternalException(
                "getObjectPropertyValues not implemented");
    }
View Full Code Here

     *             See {@link #getTimeOut()}.
     */
    public Node<OWLNamedIndividual> getSameIndividuals(OWLNamedIndividual ind)
            throws InconsistentOntologyException, FreshEntitiesException,
            ReasonerInterruptedException, TimeOutException {
        throw new ReasonerInternalException(
                "getSameIndividuals not implemented");
    }
View Full Code Here

TOP

Related Classes of org.semanticweb.owlapi.reasoner.ReasonerInternalException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.