| Package | Description |
|---|---|
| org.jdbi.v3.core.argument |
The
argument classes translate Java types into JDBC parameters. |
| org.jdbi.v3.core.argument.internal | |
| org.jdbi.v3.core.statement |
The
statement package provides most of the Fluent API
to drive statement execution. |
| Modifier and Type | Class and Description |
|---|---|
class |
MapArguments
Binds all entries of a map as arguments.
|
class |
ObjectFieldArguments
Inspect an object and binds parameters based on each of its public fields.
|
class |
ObjectMethodArguments
Binds public methods with no parameters on a specified object.
|
| Modifier and Type | Method and Description |
|---|---|
protected NamedArgumentFinder |
ObjectMethodArguments.getNestedArgumentFinder(Object obj) |
protected NamedArgumentFinder |
BeanPropertyArguments.getNestedArgumentFinder(Object o)
Deprecated.
|
protected NamedArgumentFinder |
ObjectFieldArguments.getNestedArgumentFinder(Object obj) |
| Modifier and Type | Class and Description |
|---|---|
class |
MethodReturnValueNamedArgumentFinder
Base
NamedArgumentFinder implementation that can be used for bindings that use the return value
of an object's method as an argument. |
class |
ObjectPropertyNamedArgumentFinder
Base
NamedArgumentFinder implementation that can be used when binding properties of an object, with an
optional prefix. |
class |
PojoPropertyArguments
This class hosts the logic from BeanPropertyArguments.
|
| Modifier and Type | Method and Description |
|---|---|
protected abstract NamedArgumentFinder |
ObjectPropertyNamedArgumentFinder.getNestedArgumentFinder(Object obj) |
protected NamedArgumentFinder |
PojoPropertyArguments.getNestedArgumentFinder(Object o) |
| Modifier and Type | Method and Description |
|---|---|
void |
Binding.addNamedArgumentFinder(NamedArgumentFinder args)
Bind a named argument finder.
|
This |
SqlStatement.bindNamedArgumentFinder(NamedArgumentFinder namedArgumentFinder)
Binds a new
NamedArgumentFinder. |
Copyright © 2019. All rights reserved.