io.toolisticon.aptk.tools.matcher.ImplicitMatcher Maven / Gradle / Ivy
package io.toolisticon.aptk.tools.matcher;
import javax.lang.model.element.Element;
/**
* Matcher for an implicit criteria.
*
* @param The Element type of the matcher
*/
public interface ImplicitMatcher extends BaseMatcher {
/**
* Checks if element matches implicit criteria.
* @param element the element to check
* @return true, if element matches implicit criteria, otherwise false.
*/
boolean check(E element);
}