edu.stanford.protege.webprotege.criteria.RegexMatchCriteria Maven / Gradle / Ivy
package edu.stanford.protege.webprotege.criteria;
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.Nonnull;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 18 Jun 2018
*/
public interface RegexMatchCriteria extends LexicalValueCriteria {
String PATTERN = "pattern";
String IGNORE_CASE = "ignoreCase";
@JsonProperty(PATTERN)
@Nonnull
String getPattern();
@JsonProperty(IGNORE_CASE)
boolean isIgnoreCase();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy