Uses of Interface
org.jdbi.v3.sqlobject.statement.ParameterCustomizerFactory
Packages that use ParameterCustomizerFactory
Package
Description
SQL Objects
The
sqlobject.statement
annotations declare the type of statement
that a SqlObject method should create, such as a @SqlQuery
to return rows or a
@SqlUpdate
to modify rows and return the modification count.-
Uses of ParameterCustomizerFactory in org.jdbi.v3.sqlobject
Methods in org.jdbi.v3.sqlobject that return ParameterCustomizerFactoryModifier and TypeMethodDescriptionSqlObjects.getDefaultParameterCustomizerFactory()
Returns the configuredParameterCustomizerFactory
used to bind sql statement parameters when parameter is not explicitly annotated.Methods in org.jdbi.v3.sqlobject with parameters of type ParameterCustomizerFactoryModifier and TypeMethodDescriptionSqlObjects.setDefaultParameterCustomizerFactory
(ParameterCustomizerFactory defaultParameterCustomizerFactory) Configures SqlObject to use the given default parameter customizer factory. -
Uses of ParameterCustomizerFactory in org.jdbi.v3.sqlobject.statement
Classes in org.jdbi.v3.sqlobject.statement that implement ParameterCustomizerFactoryModifier and TypeClassDescriptionclass
Standard implementation ofParameterCustomizerFactory
that delegates toBindFactory.createForParameter(Annotation, Class, Method, Parameter, int, Type)
passing null for Annotation parameter.