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.sqlobjectMethods in org.jdbi.v3.sqlobject that return ParameterCustomizerFactoryModifier and TypeMethodDescriptionSqlObjects.getDefaultParameterCustomizerFactory()Returns the configuredParameterCustomizerFactoryused 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.statementClasses in org.jdbi.v3.sqlobject.statement that implement ParameterCustomizerFactoryModifier and TypeClassDescriptionclassStandard implementation ofParameterCustomizerFactorythat delegates toBindFactory.createForParameter(Annotation, Class, Method, Parameter, int, Type)passing null for Annotation parameter.