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

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;
    }
}