Class DefineNamedBindingsFactory
java.lang.Object
org.jdbi.v3.sqlobject.customizer.internal.DefineNamedBindingsFactory
- All Implemented Interfaces:
- SqlStatementCustomizerFactory
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptioncreateForMethod(Annotation annotation, Class<?> sqlObjectType, Method method) Used to create customizers for annotations on methods.createForType(Annotation annotation, Class<?> sqlObjectType) Used to create customizers for annotations on sql object interfacesMethods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.jdbi.v3.sqlobject.customizer.SqlStatementCustomizerFactorycreateForParameter
- 
Constructor Details- 
DefineNamedBindingsFactorypublic DefineNamedBindingsFactory()
 
- 
- 
Method Details- 
createForMethodpublic SqlStatementCustomizer createForMethod(Annotation annotation, Class<?> sqlObjectType, Method method) Description copied from interface:SqlStatementCustomizerFactoryUsed to create customizers for annotations on methods.- Specified by:
- createForMethodin interface- SqlStatementCustomizerFactory
- Parameters:
- annotation- the annotation which lead to the method being called
- sqlObjectType- sql object class (interface)
- method- the method which was annotated
- Returns:
- the customizer which will be applied to the generated statement
 
- 
createForTypeDescription copied from interface:SqlStatementCustomizerFactoryUsed to create customizers for annotations on sql object interfaces- Specified by:
- createForTypein interface- SqlStatementCustomizerFactory
- Parameters:
- annotation- the annotation which lead to the method being called
- sqlObjectType- sql object class (interface)
- Returns:
- the customizer which will be applied to the generated statement
 
 
-