Package org.jdbi.v3.core.argument
Class BuiltInArgumentFactory
java.lang.Object
org.jdbi.v3.core.argument.BuiltInArgumentFactory
- All Implemented Interfaces:
- ArgumentFactory,- ArgumentFactory.Preparable
@Deprecated
public class BuiltInArgumentFactory
extends Object
implements ArgumentFactory.Preparable
Deprecated.
will be replaced by a plugin
The BuiltInArgumentFactory provides instances of 
Argument for
 many core Java types.  Generally you should not need to use this
 class directly, but instead should bind your object with the
 SqlStatement convenience methods.- 
Nested Class SummaryNested classes/interfaces inherited from interface org.jdbi.v3.core.argument.ArgumentFactoryArgumentFactory.Preparable
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbuild(Type expectedType, Object value, ConfigRegistry config) Deprecated.Returns anArgumentfor the given value if the factory supports it; empty otherwise.prepare(Type type, ConfigRegistry config) Deprecated.Collection<? extends Type> Deprecated.no longer used
- 
Field Details- 
INSTANCEDeprecated.
 
- 
- 
Constructor Details- 
BuiltInArgumentFactorypublic BuiltInArgumentFactory()Deprecated.
 
- 
- 
Method Details- 
prepareDeprecated.- Specified by:
- preparein interface- ArgumentFactory.Preparable
 
- 
buildDeprecated.Description copied from interface:ArgumentFactoryReturns anArgumentfor the given value if the factory supports it; empty otherwise.- Specified by:
- buildin interface- ArgumentFactory
- Specified by:
- buildin interface- ArgumentFactory.Preparable
- Parameters:
- expectedType- the known type of value. Depending on the situation this may be a full generic signature e.g.- ParameterizedType, a- Class, or Object.class if no type information is known.
- value- the value to convert into an- Argument
- config- the config registry, for composition
- Returns:
- an argument for the given value if this factory supports it, or Optional.empty()otherwise.
- See Also:
 
- 
prePreparedTypesDeprecated.no longer used- Specified by:
- prePreparedTypesin interface- ArgumentFactory.Preparable
 
 
-