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

com.avaje.ebeaninternal.server.util.ClassPathSearchMatcher Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebeaninternal.server.util;

/**
 * Defines interface for finding classes via a class path search.
 */
public interface ClassPathSearchMatcher {

	/**
	 * Return true if the class matches the specific search.
	 * 

* Note that the location in terms of jars and packages is noted and can be * used to make future searches faster. *

*/ boolean isMatch(Class cls); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy