Uses of Class
org.jdbi.v3.meta.Alpha
-
Packages that use Alpha Package Description org.jdbi.v3.core.array Thearraypackage binds Java arrays and collections to SQL arrays, and handles mapping array result types back to Java arrays and collections.org.jdbi.v3.core.codec 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.core.extension.annotation org.jdbi.v3.core.interceptor org.jdbi.v3.core.mapper mappers take the JDBC ResultSet and produce Java results.org.jdbi.v3.core.mapper.reflect mapper.reflectprovides RowMappers that reflectively construct result types using techniques like constructor injection or JavaBeans setters.org.jdbi.v3.core.result resultprovides the streaming interface that reads rows from JDBC and drives themapperandcollectorprocesses to produce results.org.jdbi.v3.core.statement Thestatementpackage provides most of the Fluent API to drive statement execution.org.jdbi.v3.guava.codec org.jdbi.v3.postgis -
-
Uses of Alpha in org.jdbi.v3.core.array
Methods in org.jdbi.v3.core.array with annotations of type Alpha Modifier and Type Method Description JdbiInterceptionChainHolder<SqlArrayType<?>,SqlArrayTypeFactory>SqlArrayTypes. getInferenceInterceptors()Returns theJdbiInterceptionChainHolderfor the SqlArrayType inference. -
Uses of Alpha in org.jdbi.v3.core.codec
Classes in org.jdbi.v3.core.codec with annotations of type Alpha Modifier and Type Interface Description interfaceCodec<T>A Codec provides a convenient way for a bidirectional mapping of an attribute to a database column.classCodecFactoryCodecFactory provides column mappers and arguments for bidirectional mapping types to database columns.static classCodecFactory.BuilderFluent Builder forCodecFactory. -
Uses of Alpha in org.jdbi.v3.core.config
Methods in org.jdbi.v3.core.config with annotations of type Alpha Modifier and Type Method Description default ThisConfigurable. registerCodecFactory(CodecFactory codecFactory)Convenience method to register aCodecFactory. -
Uses of Alpha in org.jdbi.v3.core.extension
Classes in org.jdbi.v3.core.extension with annotations of type Alpha Modifier and Type Interface Description interfaceConfigCustomizerFactoryFactory interface to create collections ofConfigCustomizerinstances.interfaceExtensionConfigurerConfiguresConfigRegistryinstances.static classExtensionFactory.FactoryFlagFlags that the factory can return to control aspects of the extension framework.interfaceExtensionHandlerProvides functionality for a single method on an extension object.interfaceExtensionHandlerCustomizerSupports customization of an extension handler.classExtensionMetadataMetadata that was detected when analyzing an extension class before attaching.classSimpleExtensionConfigurerConfigurer base class that applies the same configuration changes independent whether an annotation is placed on the type or a method.Methods in org.jdbi.v3.core.extension with annotations of type Alpha Modifier and Type Method Description default voidExtensionFactory. buildExtensionMetadata(ExtensionMetadata.Builder builder)Receives theExtensionMetadata.Builderwhen theExtensionMetadataobject for this extension is created.ExtensionMetadataExtensions. findMetadata(java.lang.Class<?> extensionType, ExtensionFactory extensionFactory)Retrieves all extension metadata for a specific extension type.default java.util.Collection<ConfigCustomizerFactory>ExtensionFactory. getConfigCustomizerFactories(ConfigRegistry config)Returns a collection ofConfigCustomizerFactoryobjects.default java.util.Collection<ExtensionHandlerCustomizer>ExtensionFactory. getExtensionHandlerCustomizers(ConfigRegistry config)Returns a collection ofExtensionHandlerCustomizerobjects.default java.util.Collection<ExtensionHandlerFactory>ExtensionFactory. getExtensionHandlerFactories(ConfigRegistry config)Returns a collection ofExtensionHandlerFactoryobjects.default java.util.Set<ExtensionFactory.FactoryFlag>ExtensionFactory. getFactoryFlags()Returns a set ofExtensionFactory.FactoryFlags that describe the extension factory.ExtensionsExtensions. registerConfigCustomizerFactory(ConfigCustomizerFactory configCustomizerFactory)Registers a globalConfigCustomizerFactoryinstance.ExtensionsExtensions. registerHandlerCustomizer(ExtensionHandlerCustomizer extensionHandlerCustomizer)Registers a globalExtensionHandlerCustomizerinstance.ExtensionsExtensions. registerHandlerFactory(ExtensionHandlerFactory extensionHandlerFactory)Registers a globalExtensionHandlerFactoryinstance. -
Uses of Alpha in org.jdbi.v3.core.extension.annotation
Classes in org.jdbi.v3.core.extension.annotation with annotations of type Alpha Modifier and Type Class Description interfaceExtensionHandlerCustomizationOrderDetermines the order in which extension method decorators are invoked.interfaceUseExtensionConfigurerMeta-Annotation used to identify annotations that modify configuration in the context of an extension object or method.interfaceUseExtensionHandlerMeta-Annotation used to map a method to an extension handler.interfaceUseExtensionHandlerCustomizerMeta-Annotation used to identify extension method decorating annotations. -
Uses of Alpha in org.jdbi.v3.core.interceptor
Classes in org.jdbi.v3.core.interceptor with annotations of type Alpha Modifier and Type Interface Description interfaceJdbiInterceptionChain<T>An instance of an interception chain.classJdbiInterceptionChainHolder<S,T>An interception chain holder to manage transformation operations.interfaceJdbiInterceptor<S,T>Generic interface to allow transformation operation interception. -
Uses of Alpha in org.jdbi.v3.core.mapper
Methods in org.jdbi.v3.core.mapper with annotations of type Alpha Modifier and Type Method Description JdbiInterceptionChainHolder<ColumnMapper<?>,QualifiedColumnMapperFactory>ColumnMappers. getInferenceInterceptors()Returns theJdbiInterceptionChainHolderfor the ColumnMapper inference.JdbiInterceptionChainHolder<RowMapper<?>,RowMapperFactory>RowMappers. getInferenceInterceptors()Returns theJdbiInterceptionChainHolderfor the RowMapper inference. -
Uses of Alpha in org.jdbi.v3.core.mapper.reflect
Classes in org.jdbi.v3.core.mapper.reflect with annotations of type Alpha Modifier and Type Class Description classAccessibleObjectStrategyMethods in org.jdbi.v3.core.mapper.reflect with annotations of type Alpha Modifier and Type Method Description ReflectionMappersReflectionMappers. disableAccessibleObjectStrategy()Set the strategy Jdbi uses for Java accessibility rules to a no-op.<T extends java.lang.reflect.AccessibleObject>
TReflectionMappers. makeAccessible(T accessibleObject)Use the accessibility strategy to potentially make a reflective operation accessible.ReflectionMappersReflectionMappers. setAccessibleObjectStrategy(java.util.function.Consumer<java.lang.reflect.AccessibleObject> makeAccessible)Set the strategy Jdbi uses for Java accessibility rules. -
Uses of Alpha in org.jdbi.v3.core.result
Methods in org.jdbi.v3.core.result with annotations of type Alpha Modifier and Type Method Description default <R extends java.util.Collection<? super T>>
RResultIterable. collectInto(java.lang.reflect.Type containerType)Collect the results into a container type.default <R extends java.util.Collection<? super T>>
RResultIterable. collectInto(GenericType<R> containerType)Collect the results into a collection type.default java.util.List<T>ResultIterable. collectIntoList()Returns results in aList.default java.util.Set<T>ResultIterable. collectIntoSet()Returns results in aSet.default <C extends java.util.Collection<T>>
CResultIterable. toCollection(java.util.function.Supplier<C> supplier)Collect the results into a collection object similar toCollectors.toCollection(Supplier). -
Uses of Alpha in org.jdbi.v3.core.statement
Methods in org.jdbi.v3.core.statement with annotations of type Alpha Modifier and Type Method Description ThisBaseStatement. attachToHandleForCleanup()Registers with the handle for cleaning when the handle is closed. -
Uses of Alpha in org.jdbi.v3.guava.codec
Classes in org.jdbi.v3.guava.codec with annotations of type Alpha Modifier and Type Class Description classTypeResolvingCodecFactoryAn extendedCodecFactorywhich can resolve Codecs for subtypes. -
Uses of Alpha in org.jdbi.v3.postgis
Classes in org.jdbi.v3.postgis with annotations of type Alpha Modifier and Type Class Description (package private) classPostgisCodecclassPostgisPluginPostgis plugin.
-