Class MaxRowsFactory
- java.lang.Object
-
- org.jdbi.v3.sqlobject.customizer.internal.MaxRowsFactory
-
- All Implemented Interfaces:
SqlStatementCustomizerFactory
public class MaxRowsFactory extends Object implements SqlStatementCustomizerFactory
-
-
Field Summary
Fields Modifier and Type Field Description static intDEFAULT_MAX_ROWS
-
Constructor Summary
Constructors Constructor Description MaxRowsFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SqlStatementCustomizercreateForMethod(Annotation annotation, Class<?> sqlObjectType, Method method)Used to create customizers for annotations on methods.SqlStatementParameterCustomizercreateForParameter(Annotation annotation, Class<?> sqlObjectType, Method method, Parameter param, int index, Type type)Used to create customizers for annotations on parameters-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jdbi.v3.sqlobject.customizer.SqlStatementCustomizerFactory
createForType
-
-
-
-
Field Detail
-
DEFAULT_MAX_ROWS
public static final int DEFAULT_MAX_ROWS
- See Also:
- Constant Field Values
-
-
Method Detail
-
createForMethod
public SqlStatementCustomizer createForMethod(Annotation annotation, Class<?> sqlObjectType, Method method)
Description copied from interface:SqlStatementCustomizerFactoryUsed to create customizers for annotations on methods.- Specified by:
createForMethodin interfaceSqlStatementCustomizerFactory- Parameters:
annotation- the annotation which lead to the method being calledsqlObjectType- sql object class (interface)method- the method which was annotated- Returns:
- the customizer which will be applied to the generated statement
-
createForParameter
public SqlStatementParameterCustomizer createForParameter(Annotation annotation, Class<?> sqlObjectType, Method method, Parameter param, int index, Type type)
Description copied from interface:SqlStatementCustomizerFactoryUsed to create customizers for annotations on parameters- Specified by:
createForParameterin interfaceSqlStatementCustomizerFactory- Parameters:
annotation- the annotation which lead to the method being calledsqlObjectType- sql object class (interface)method- the method which was annotatedparam- the parameter which was annotatedindex- the method parameter indextype- the type of the parameter- Returns:
- the customizer which will be applied to the generated statement
-
-