
edu.stanford.protege.webprotege.match.AnythingMatcher Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege.match;
import javax.annotation.Nonnull;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2019-12-02
*/
public class AnythingMatcher implements Matcher {
public static AnythingMatcher get() {
return new AnythingMatcher<>();
}
@Override
public boolean matches(@Nonnull T value) {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy