001package io.avaje.classpath.scanner; 002 003/** 004 * Filter predicate to determine which scanned classes should be included. 005 */ 006public interface ClassFilter { 007 008 /** 009 * Return true if this class should be included in the scan result. 010 */ 011 boolean isMatch(Class<?> cls); 012}