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

it.unibz.inf.ontop.owlapi.resultset.OWLBinding Maven / Gradle / Ivy

The newest version!
package it.unibz.inf.ontop.owlapi.resultset;

import org.semanticweb.owlapi.model.OWLException;
import org.semanticweb.owlapi.model.OWLObject;

public interface OWLBinding {
    /**
     * Gets the name of the binding (e.g. the variable name).
     *
     * @return The name of the binding.
     */
    String getName();

    /**
     * Gets the value of the binding. The returned value is never equal to null, such a "binding" is
     * considered to be unbound.
     *
     * @return The value of the binding, never null.
     */
    OWLObject getValue() throws OWLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy