Uses of Interface
org.jdbi.v3.core.array.SqlArrayType
Packages that use 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
Methods in org.jdbi.v3.core.array that return SqlArrayTypeModifier and TypeMethodDescriptionstatic <T> SqlArrayType<T>
Create a SqlArrayType from the given type and convert function.Methods in org.jdbi.v3.core.array that return types with arguments of type SqlArrayTypeModifier 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.Methods in org.jdbi.v3.core.array with parameters of type SqlArrayTypeModifier 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
Methods in org.jdbi.v3.core.config with parameters of type SqlArrayTypeModifier and TypeMethodDescriptiondefault This
Configurable.registerArrayType
(SqlArrayType<?> arrayType) Convenience method forgetConfig(SqlArrayTypes.class).register(arrayType)
-
Uses of SqlArrayType in org.jdbi.v3.core.statement
Methods in org.jdbi.v3.core.statement that return types with arguments of type SqlArrayTypeModifier and TypeMethodDescriptionOptional<SqlArrayType<?>>
StatementContext.findSqlArrayTypeFor
(Type elementType) Obtain anSqlArrayType
for the given array element type in this context