package jalview.util.matcher; public interface MatcherI { /** * Answers true if the given value is matched, else false * * @param s * @return */ boolean matches(String s); Condition getCondition(); String getPattern(); }