org.swrlapi.builtins.arguments.SWRLNamedIndividualBuiltInArgument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swrlapi Show documentation
Show all versions of swrlapi Show documentation
Java API for working with SWRL rules and SQWRL queries
package org.swrlapi.builtins.arguments;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.semanticweb.owlapi.model.OWLNamedIndividual;
/**
* Represents an OWL named individual argument to a built-in atom.
*
* @see org.semanticweb.owlapi.model.OWLNamedIndividual
*/
public interface SWRLNamedIndividualBuiltInArgument extends SWRLNamedBuiltInArgument
{
/**
* @return An OWL named individual
*/
@NonNull OWLNamedIndividual getOWLNamedIndividual();
}