Uses of Interface
org.jdbi.v3.sqlobject.statement.ParameterCustomizerFactory
-
Packages that use ParameterCustomizerFactory Package Description org.jdbi.v3.sqlobject SQL Objectsorg.jdbi.v3.sqlobject.statement Thesqlobject.statementannotations declare the type of statement that a SqlObject method should create, such as a@SqlQueryto return rows or a@SqlUpdateto modify rows and return the modification count. -
-
Uses of ParameterCustomizerFactory in org.jdbi.v3.sqlobject
Methods in org.jdbi.v3.sqlobject that return ParameterCustomizerFactory Modifier and Type Method Description ParameterCustomizerFactorySqlObjects. 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 ParameterCustomizerFactory Modifier and Type Method Description SqlObjectsSqlObjects. 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 ParameterCustomizerFactory Modifier and Type Class Description classBindParameterCustomizerFactoryStandard implementation ofParameterCustomizerFactorythat delegates toBindFactory.createForParameter(Annotation, Class, Method, Parameter, int, Type)passing null for Annotation parameter.
-