org.swrlapi.drools.owl.properties.PEResolver 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.owl.properties;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.semanticweb.owlapi.model.OWLAnnotationProperty;
import org.semanticweb.owlapi.model.OWLDataPropertyExpression;
import org.semanticweb.owlapi.model.OWLObjectPropertyExpression;
/**
* Resolves property expression identifiers to their corresponding Drools {@link PE} object.
*
* @see org.swrlapi.drools.owl.properties.PE
* @see org.semanticweb.owlapi.model.OWLObjectPropertyExpression
* @see org.semanticweb.owlapi.model.OWLDataPropertyExpression
*/
public interface PEResolver
{
@NonNull OWLObjectPropertyExpression resolveOWLObjectPropertyExpression(@NonNull String peid);
@NonNull OWLDataPropertyExpression resolveOWLDataPropertyExpression(@NonNull String peid);
@NonNull OWLAnnotationProperty resolveOWLAnnotationProperty(@NonNull String pid);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy