Package org.jdbi.v3.sqlobject.statement
Class BindParameterCustomizerFactory
java.lang.Object
org.jdbi.v3.sqlobject.statement.BindParameterCustomizerFactory
- All Implemented Interfaces:
- ParameterCustomizerFactory
Standard implementation of 
ParameterCustomizerFactory that delegates to
 BindFactory.createForParameter(Annotation, Class, Method, Parameter, int, Type) passing null for Annotation parameter.- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptioncreateForParameter(Class<?> sqlObjectType, Method method, Parameter param, int index, Type type) Creates parameter customizer used to bind sql statement parameters when parameter is not explicitly annotated
- 
Constructor Details- 
BindParameterCustomizerFactorypublic BindParameterCustomizerFactory()
 
- 
- 
Method Details- 
createForParameterpublic SqlStatementParameterCustomizer createForParameter(Class<?> sqlObjectType, Method method, Parameter param, int index, Type type) Description copied from interface:ParameterCustomizerFactoryCreates parameter customizer used to bind sql statement parameters when parameter is not explicitly annotated- Specified by:
- createForParameterin interface- ParameterCustomizerFactory
- Parameters:
- sqlObjectType- sql object class (interface)
- method- the method which was identified as an SQL method
- param- the parameter to bind
- index- the method parameter index
- type- the method parameter type
- Returns:
- the customizer which will be applied to the generated statement
 
 
-