net.jbock.convert.matcher.Matcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbock-compiler Show documentation
Show all versions of jbock-compiler Show documentation
jbock annotation processor
package net.jbock.convert.matcher;
import net.jbock.annotated.AnnotatedMethod;
import net.jbock.convert.matching.Match;
import java.util.Optional;
public interface Matcher {
Optional> tryMatch(
M parameter);
}