org.swrlapi.bridge.extractors.TargetRuleEngineOWLLiteralExtractor 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.bridge.extractors;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.semanticweb.owlapi.model.OWLLiteral;
public interface TargetRuleEngineOWLLiteralExtractor extends TargetRuleEngineExtractor
{
@NonNull OWLLiteral extract(@NonNull T targetRuleEngineLiteral);
}