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

org.swrlapi.bridge.converters.TargetRuleEngineSWRLHeadAtomConverter Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package org.swrlapi.bridge.converters;

import org.checkerframework.checker.nullness.qual.NonNull;
import org.semanticweb.owlapi.model.SWRLClassAtom;
import org.semanticweb.owlapi.model.SWRLDataPropertyAtom;
import org.semanticweb.owlapi.model.SWRLDataRangeAtom;
import org.semanticweb.owlapi.model.SWRLDifferentIndividualsAtom;
import org.semanticweb.owlapi.model.SWRLObjectPropertyAtom;
import org.semanticweb.owlapi.model.SWRLSameIndividualAtom;
import org.swrlapi.core.SWRLAPIBuiltInAtom;

/**
 * This interface describes methods that can be implemented by a target rule engine to convert SWRL head atoms to native
 * rule clauses.
 * 

* Implementors may also chose an alternate conversion approach. * * @see org.semanticweb.owlapi.model.SWRLAtom */ public interface TargetRuleEngineSWRLHeadAtomConverter extends TargetRuleEngineConverter { @NonNull T convert(@NonNull SWRLClassAtom atom); @NonNull T convert(@NonNull SWRLDataPropertyAtom atom); @NonNull T convert(@NonNull SWRLObjectPropertyAtom atom); @NonNull T convert(@NonNull SWRLSameIndividualAtom atom); @NonNull T convert(@NonNull SWRLDifferentIndividualsAtom atom); @NonNull T convert(@NonNull SWRLAPIBuiltInAtom atom); @NonNull T convert(@NonNull SWRLDataRangeAtom atom); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy