Uses of Interface
org.jdbi.v3.core.extension.ExtensionFactory
-
Packages that use ExtensionFactory Package Description org.jdbi.v3.core.config Theconfigclasses define a configuration registry starting from eachJdbiinstance.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 Objects -
-
Uses of ExtensionFactory in org.jdbi.v3.core.config
Methods in org.jdbi.v3.core.config with parameters of type ExtensionFactory Modifier and Type Method Description default ThisConfigurable. registerExtension(ExtensionFactory factory)Convenience method forgetConfig(Extensions.class).register(factory) -
Uses of ExtensionFactory in org.jdbi.v3.core.extension
Classes in org.jdbi.v3.core.extension that implement ExtensionFactory Modifier and Type Class Description (package private) classExtensionFactoryDelegateFields in org.jdbi.v3.core.extension declared as ExtensionFactory Modifier and Type Field Description private ExtensionFactoryExtensionFactoryDelegate. delegatedFactoryMethods in org.jdbi.v3.core.extension that return ExtensionFactory Modifier and Type Method Description (package private) ExtensionFactoryExtensionFactoryDelegate. getDelegatedFactory()Methods in org.jdbi.v3.core.extension that return types with arguments of type ExtensionFactory Modifier and Type Method Description java.util.Optional<ExtensionFactory>Extensions. findFactory(java.lang.Class<? extends ExtensionFactory> factoryType)Find the registered factory of the given type.private java.util.Optional<ExtensionFactory>Extensions. findFactoryFor(java.lang.Class<?> extensionType)Methods in org.jdbi.v3.core.extension with parameters of type ExtensionFactory Modifier and Type Method Description private java.util.function.Function<java.lang.Class<?>,ExtensionMetadata>Extensions. createMetadata(ExtensionFactory extensionFactory)ExtensionMetadataExtensions. findMetadata(java.lang.Class<?> extensionType, ExtensionFactory extensionFactory)Retrieves all extension metadata for a specific extension type.ExtensionsExtensions. register(ExtensionFactory factory)Register aExtensionFactoryinstance with the extension framework.Method parameters in org.jdbi.v3.core.extension with type arguments of type ExtensionFactory Modifier and Type Method Description java.util.Optional<ExtensionFactory>Extensions. findFactory(java.lang.Class<? extends ExtensionFactory> factoryType)Find the registered factory of the given type.Constructors in org.jdbi.v3.core.extension with parameters of type ExtensionFactory Constructor Description ExtensionFactoryDelegate(ExtensionFactory delegatedFactory) -
Uses of ExtensionFactory in org.jdbi.v3.sqlobject
Classes in org.jdbi.v3.sqlobject that implement ExtensionFactory Modifier and Type Class Description (package private) classAbstractSqlObjectFactoryclassGeneratorSqlObjectFactorySupport for generator instances (concrete classes that have been created by the Jdbi generator).classSqlObjectFactoryCreates implementations for SqlObject interfaces.
-