| Package | Description |
|---|---|
| org.jdbi.v3.core.array |
The
array package binds Java arrays and collections to SQL arrays, and
handles mapping array result types back to Java arrays and collections. |
| org.jdbi.v3.core.config |
The
config classes define a configuration registry starting from
each Jdbi instance. |
| org.jdbi.v3.core.statement |
The
statement package provides most of the Fluent API
to drive statement execution. |
| Modifier and Type | Method and Description |
|---|---|
Optional<SqlArrayType<?>> |
SqlArrayTypeFactory.build(Type elementType,
ConfigRegistry config)
Returns an
SqlArrayType for the given elementType if this factory supports it; empty otherwise. |
Optional<SqlArrayType<?>> |
SqlArrayTypes.findFor(Type elementType)
Obtain an
SqlArrayType for the given array element type in the given context |
| Modifier and Type | Method and Description |
|---|---|
SqlArrayTypes |
SqlArrayTypes.register(SqlArrayType<?> arrayType)
Register a
SqlArrayType which will have its parameterized type inspected to determine which element type
it supports. |
| Modifier and Type | Method and Description |
|---|---|
default This |
Configurable.registerArrayType(SqlArrayType<?> arrayType)
Convenience method for
getConfig(SqlArrayTypes.class).register(arrayType) |
| Modifier and Type | Method and Description |
|---|---|
Optional<SqlArrayType<?>> |
StatementContext.findSqlArrayTypeFor(Type elementType)
Obtain an
SqlArrayType for the given array element type in this context |
Copyright © 2017. All rights reserved.