org.swrlapi.drools.swrl.BA 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.swrlapi.builtins.arguments.SWRLBuiltInArgument;
import org.swrlapi.drools.extractors.DroolsSWRLBuiltInArgumentExtractor;
import org.swrlapi.exceptions.TargetSWRLRuleEngineException;
/**
* This interface represents a SWRLAPI-based SWRL built-in argument in Drools.
*
* @see org.swrlapi.builtins.arguments.SWRLBuiltInArgument
*/
public interface BA extends AA
{
@NonNull @Override SWRLBuiltInArgument extract(@NonNull DroolsSWRLBuiltInArgumentExtractor extractor)
throws TargetSWRLRuleEngineException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy