edu.stanford.protege.webprotege.criteria.NumericPredicateVisitor 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;
import javax.annotation.Nonnull;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 10 Jun 2018
*/
public interface NumericPredicateVisitor {
R isGreaterThan(@Nonnull A arg);
R isGreaterThanOrEqualTo(@Nonnull A arg);
R isLessThan(@Nonnull A arg);
R isLessThanOrEqualTo(@Nonnull A arg);
R isEqualTo(@Nonnull A arg);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy