| Package | Description |
|---|---|
| org.jdbi.v3.core.argument | |
| org.jdbi.v3.core.array | |
| org.jdbi.v3.core.statement |
Interfaces used to alter JDBI's handling of JDBC Statements
|
| Modifier and Type | Class and Description |
|---|---|
class |
CharacterStreamArgument |
class |
InputStreamArgument |
class |
NullArgument |
class |
ObjectArgument
An Argument which uses
setObject to support
vendor specific types. |
| Modifier and Type | Method and Description |
|---|---|
protected abstract Argument |
AbstractArgumentFactory.build(T value,
ConfigRegistry config)
Produce an argument object for the given value.
|
| Modifier and Type | Method and Description |
|---|---|
Optional<Argument> |
ObjectArgumentFactory.build(Type expectedType,
Object value,
ConfigRegistry config) |
Optional<Argument> |
BuiltInArgumentFactory.build(Type expectedType,
Object value,
ConfigRegistry config) |
Optional<Argument> |
ArgumentFactory.build(Type type,
Object value,
ConfigRegistry config)
Returns an
Argument for the given value if the factory supports it; empty otherwise. |
Optional<Argument> |
AbstractArgumentFactory.build(Type type,
Object value,
ConfigRegistry config) |
Optional<Argument> |
NamedArgumentFinder.find(String name) |
Optional<Argument> |
MapArguments.find(String name) |
Optional<Argument> |
BeanPropertyArguments.find(String name) |
Optional<Argument> |
Arguments.findFor(Type type,
Object value)
Obtain an argument for given value in the given context
|
| Modifier and Type | Method and Description |
|---|---|
Optional<Argument> |
SqlArrayArgumentFactory.build(Type type,
Object value,
ConfigRegistry config) |
| Modifier and Type | Method and Description |
|---|---|
Optional<Argument> |
StatementContext.findArgumentFor(Type type,
Object value)
Obtain an argument for given value in this context
|
Optional<Argument> |
Binding.findForName(String name)
Look up an argument by name
|
Optional<Argument> |
Binding.findForPosition(int position)
Look up an argument by position
|
| Modifier and Type | Method and Description |
|---|---|
This |
SqlStatement.bind(int position,
Argument argument)
Used if you need to have some exotic parameter bound.
|
This |
SqlStatement.bind(String name,
Argument argument)
Used if you need to have some exotic parameter bound.
|
Copyright © 2017. All rights reserved.