Uses of Interface
org.jdbi.v3.core.statement.TemplateEngine
Packages that use TemplateEngine
Package
Description
The
config classes define a configuration registry starting from
each Jdbi instance.
The
statement package provides most of the Fluent API
to drive statement execution.-
Uses of TemplateEngine in org.jdbi.v3.core.config
Methods in org.jdbi.v3.core.config with parameters of type TemplateEngineModifier and TypeMethodDescriptiondefault ThisConfigurable.setTemplateEngine(TemplateEngine templateEngine) Convenience method forgetConfig(SqlStatements.class).setTemplateEngine(rewriter) -
Uses of TemplateEngine in org.jdbi.v3.core.statement
Subinterfaces of TemplateEngine in org.jdbi.v3.core.statementClasses in org.jdbi.v3.core.statement that implement TemplateEngineModifier and TypeClassDescriptionclassTemplate engine which replaces angle-bracketed tokens like<name>with the string value of the named attribute.Fields in org.jdbi.v3.core.statement declared as TemplateEngineModifier and TypeFieldDescriptionstatic final TemplateEngineTemplateEngine.NOPConvenience constant that returns the input template.Methods in org.jdbi.v3.core.statement that return TemplateEngineModifier and TypeMethodDescriptionSqlStatements.getTemplateEngine()Returns theTemplateEnginewhich renders the SQL template.Methods in org.jdbi.v3.core.statement with parameters of type TemplateEngineModifier and TypeMethodDescriptionSqlStatements.setTemplateEngine(TemplateEngine templateEngine) Sets theTemplateEngineused to render SQL for allSQL statementsexecuted by Jdbi.