Package org.jdbi.v3.sqlobject.config
Annotation Type UseTemplateEngine
Use the specified 
TemplateEngine class to render SQL for the
 annotated SQL object class or method. The given TemplateEngine class
 must have a public constructor with any of the following signatures:
 - MyTemplateEngine() // no arguments
 - MyTemplateEngine(Class)
 - MyTemplateEngine(Class,Method)
 
- 
Required Element Summary
Required ElementsModifier and TypeRequired ElementDescriptionClass<? extends TemplateEngine>Specify the TemplateEngine class to use. 
- 
Element Details
- 
value
Class<? extends TemplateEngine> valueSpecify the TemplateEngine class to use.- Returns:
 - the TemplateEngine class to use.
 
 
 -