edu.stanford.protege.webprotege.criteria.HierarchyPositionCriteriaVisitor 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
* 2020-04-08
*/
public interface HierarchyPositionCriteriaVisitor {
R visit(CompositeHierarchyPositionCriteria criteria);
R visit(SubClassOfCriteria subClassOfCriteria);
R visit(InstanceOfCriteria instanceOfCriteria);
R visit(NotSubClassOfCriteria notSubClassOfCriteria);
R visit(IsLeafClassCriteria isALeafClassCriteria);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy