All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.protege.webprotege.match.Matcher Maven / Gradle / Ivy

The newest version!
package edu.stanford.protege.webprotege.match;

import javax.annotation.Nonnull;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 7 Jun 2018
 */
public interface Matcher  {

    boolean matches(@Nonnull T value);

    static  Matcher matchesAny() {
        return o -> true;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy