Package org.jdbi.v3.sqlobject.statement
Interface ParameterCustomizerFactory
-
- All Known Implementing Classes:
BindParameterCustomizerFactory
public interface ParameterCustomizerFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlStatementParameterCustomizercreateForParameter(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
-
-
-
Method Detail
-
createForParameter
SqlStatementParameterCustomizer createForParameter(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- Parameters:
sqlObjectType- sql object class (interface)method- the method which was identified as an SQL methodparam- the parameter to bindindex- the method parameter indextype- the method parameter type- Returns:
- the customizer which will be applied to the generated statement
-
-