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

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

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

import javax.annotation.Nonnull;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 13 Jun 2018
 */
public class StringHasUntrimmedSpaceMatcher implements Matcher {

    @Override
    public boolean matches(@Nonnull String value) {
        return value.endsWith(" ") || value.startsWith(" ");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy