Uses of Interface
org.jdbi.v3.core.array.SqlArrayType
Package
Description
The
array
package binds Java arrays and collections to SQL arrays, and
handles mapping array result types back to Java arrays and collections.
The
config
classes define a configuration registry starting from
each Jdbi
instance.
The
statement
package provides most of the Fluent API
to drive statement execution.-
Uses of SqlArrayType in org.jdbi.v3.core.array
Modifier and TypeMethodDescriptionstatic <T> SqlArrayType<T>
Create a SqlArrayType from the given type and convert function.Modifier and TypeMethodDescriptionOptional<SqlArrayType<?>>
SqlArrayTypeFactory.build
(Type elementType, ConfigRegistry config) Returns anSqlArrayType
for the givenelementType
if this factory supports it; empty otherwise.Optional<SqlArrayType<?>>
Obtain anSqlArrayType
for the given array element type in the given contextSqlArrayTypes.getInferenceInterceptors()
Returns theJdbiInterceptionChainHolder
for the SqlArrayType inference.Modifier and TypeMethodDescriptionSqlArrayTypes.register
(SqlArrayType<?> arrayType) Register aSqlArrayType
which will have its parameterized type inspected to determine which element type it supports. -
Uses of SqlArrayType in org.jdbi.v3.core.config
Modifier and TypeMethodDescriptiondefault This
Configurable.registerArrayType
(SqlArrayType<?> arrayType) Convenience method forgetConfig(SqlArrayTypes.class).register(arrayType)
-
Uses of SqlArrayType in org.jdbi.v3.core.statement
Modifier and TypeMethodDescriptionOptional<SqlArrayType<?>>
StatementContext.findSqlArrayTypeFor
(Type elementType) Obtain anSqlArrayType
for the given array element type in this context