| Package | Description |
|---|---|
| org.jdbi.v3.core.argument |
The
argument classes translate Java types into JDBC parameters. |
| 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. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractArgumentFactory<T>
An
ArgumentFactory base class for arguments of type T. |
class |
BuiltInArgumentFactory
The BuiltInArgumentFactory provides instances of
Argument for
many core Java types. |
class |
JavaTimeZoneIdArgumentFactory |
class |
ObjectArgumentFactory
Argument factory that matches a specified type and binds
it as an
ObjectArgument. |
| Modifier and Type | Field and Description |
|---|---|
static ArgumentFactory |
BuiltInArgumentFactory.INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
static ArgumentFactory |
ObjectArgumentFactory.create(Class<?> type)
Match the given type and bind as an object without SQL type information.
|
static ArgumentFactory |
ObjectArgumentFactory.create(Class<?> type,
Integer sqlType)
Match the given type and bind as an object with the given SQL type information
|
| Modifier and Type | Method and Description |
|---|---|
Arguments |
Arguments.register(ArgumentFactory factory)
Registers the given argument factory.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SqlArrayArgumentFactory
Bind a Java array or
Collection to a SQL array using the
SqlArrayTypeFactory for the given type information. |
| Modifier and Type | Method and Description |
|---|---|
default This |
Configurable.registerArgument(ArgumentFactory factory)
Convenience method for
getConfig(Arguments.class).register(factory) |
Copyright © 2017. All rights reserved.