edu.stanford.protege.webprotege.criteria.RelationshipValueCriteriaVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webprotege-criteria Show documentation
Show all versions of webprotege-criteria Show documentation
Data structures for representing matching criteria
package edu.stanford.protege.webprotege.criteria;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2019-12-02
*/
public interface RelationshipValueCriteriaVisitor {
R visit(AnyRelationshipValueCriteria criteria);
R visit(RelationshipValueMatchesCriteria criteria);
R visit(RelationshipValueEqualsEntityCriteria criteria);
R visit(RelationshipValueEqualsLiteralCriteria criteria);
R visit(CompositeRelationshipValueCriteria compositeRelationshipValueCriteria);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy