org.swrlapi.drools.swrl.AA Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swrlapi-drools-engine Show documentation
Show all versions of swrlapi-drools-engine Show documentation
Drools implementation of SWRLAPI-based SWRL rule engine
package org.swrlapi.drools.swrl;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.semanticweb.owlapi.model.SWRLArgument;
import org.swrlapi.drools.extractors.DroolsSWRLBuiltInArgumentExtractor;
import org.swrlapi.exceptions.TargetSWRLRuleEngineException;
/**
* This interface represents OWLAPI SWRL atom arguments in Drools.
*
* @see org.semanticweb.owlapi.model.SWRLArgument
*/
public interface AA
{
@NonNull SWRLArgument extract(@NonNull DroolsSWRLBuiltInArgumentExtractor extractor)
throws TargetSWRLRuleEngineException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy