edu.stanford.smi.protege.util.StringMatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protege Show documentation
Show all versions of protege Show documentation
Core code for the Protege ontology editor. Serves as the basis for the Protege-Frames and Protege-OWL editors.
package edu.stanford.smi.protege.util;
/**
* An interface that can be used to query whether a particular value is a match for another string. The other string
* might contains wildcards, regexp, etc.
*
* @author Ray Fergerson
*/
public interface StringMatcher {
boolean isMatch(String value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy