package class9_3_FunctionalExample_Library_inClass_start;// Dr. Yoder. MSOE. 12 May 2017 public interface Matcher { /** * @param book The book to compare * @param searchTerm The string to match to the book * @return true if the book matches the search term, false, otherwise. * Different functions implementing this interface will decide * what "match" means differently */ public boolean match(Book book, String searchTerm); }