Uses of Interface
org.jdbi.v3.core.extension.HandleSupplier
-
Packages that use HandleSupplier Package Description org.jdbi.v3.core The 'core' package hosts the top level interface into jdbi core.org.jdbi.v3.core.extension Theextensionclasses allow you to extendJdbi's functionality by declaring interface types that may attach toHandleinstances.org.jdbi.v3.sqlobject SQL Objectsorg.jdbi.v3.sqlobject.internal org.jdbi.v3.sqlobject.statement.internal -
-
Uses of HandleSupplier in org.jdbi.v3.core
Classes in org.jdbi.v3.core that implement HandleSupplier Modifier and Type Class Description (package private) classAbstractHandleSupplier(package private) classConstantHandleSupplier(package private) classLazyHandleSupplierFields in org.jdbi.v3.core with type parameters of type HandleSupplier Modifier and Type Field Description private java.lang.ThreadLocal<HandleSupplier>Jdbi. threadHandleSupplierMethods in org.jdbi.v3.core that return HandleSupplier Modifier and Type Method Description (package private) static HandleSupplierConstantHandleSupplier. of(Handle handle)Methods in org.jdbi.v3.core with parameters of type HandleSupplier Modifier and Type Method Description private <R,E,X extends java.lang.Exception>
RJdbi. callWithExtension(java.lang.Class<E> extensionType, ExtensionCallback<R,E,X> callback, HandleSupplier handleSupplier) -
Uses of HandleSupplier in org.jdbi.v3.core.extension
Fields in org.jdbi.v3.core.extension declared as HandleSupplier Modifier and Type Field Description private HandleSupplierExtensionMetadata.ExtensionHandlerInvoker. handleSupplierMethods in org.jdbi.v3.core.extension with parameters of type HandleSupplier Modifier and Type Method Description default <E> EExtensionFactory. attach(java.lang.Class<E> extensionType, HandleSupplier handleSupplier)Attaches an extension type.<E> EExtensionFactoryDelegate. attach(java.lang.Class<E> extensionType, HandleSupplier handleSupplier)<E> ExtensionMetadata.ExtensionHandlerInvokerExtensionMetadata. createExtensionHandlerInvoker(E target, java.lang.reflect.Method method, HandleSupplier handleSupplier, ConfigRegistry config)Creates anExtensionMetadata.ExtensionHandlerInvokerinstance for a specific method.<E> java.util.Optional<E>Extensions. findFor(java.lang.Class<E> extensionType, HandleSupplier handleSupplier)Create an extension instance if a factory accepts the extension type.java.lang.ObjectExtensionHandler. invoke(HandleSupplier handleSupplier, java.lang.Object target, java.lang.Object... args)Gets invoked to return a value for the method that this handler was bound to.Constructors in org.jdbi.v3.core.extension with parameters of type HandleSupplier Constructor Description ExtensionHandlerInvoker(java.lang.Object target, java.lang.reflect.Method method, ExtensionHandler extensionHandler, HandleSupplier handleSupplier, ConfigRegistry config) -
Uses of HandleSupplier in org.jdbi.v3.sqlobject
Methods in org.jdbi.v3.sqlobject with parameters of type HandleSupplier Modifier and Type Method Description <E> EGeneratorSqlObjectFactory. attach(java.lang.Class<E> extensionType, HandleSupplier handleSupplier)Attach a sql object from a jdbi generator created class.java.lang.ObjectHandler. invoke(java.lang.Object target, java.lang.Object[] args, HandleSupplier handleSupplier)Deprecated.Executes a SQL Object method, and returns the result.default java.lang.ObjectHandler. invoke(HandleSupplier handleSupplier, java.lang.Object target, java.lang.Object... args)Deprecated. -
Uses of HandleSupplier in org.jdbi.v3.sqlobject.internal
Methods in org.jdbi.v3.sqlobject.internal with parameters of type HandleSupplier Modifier and Type Method Description java.lang.ObjectCreateSqlObjectHandler. invoke(HandleSupplier handleSupplier, java.lang.Object target, java.lang.Object... args) -
Uses of HandleSupplier in org.jdbi.v3.sqlobject.statement.internal
Methods in org.jdbi.v3.sqlobject.statement.internal with parameters of type HandleSupplier Modifier and Type Method Description java.lang.ObjectCustomizingStatementHandler. invoke(HandleSupplier handleSupplier, java.lang.Object target, java.lang.Object... args)java.lang.ObjectSqlBatchHandler. invoke(HandleSupplier handleSupplier, java.lang.Object target, java.lang.Object... args)
-