Uses of Interface
org.jdbi.v3.core.mapper.RowMapperFactory
-
Packages that use RowMapperFactory Package Description org.jdbi.v3.core.config Theconfigclasses define a configuration registry starting from eachJdbiinstance.org.jdbi.v3.core.mapper mappers take the JDBC ResultSet and produce Java results.org.jdbi.v3.core.mapper.reflect mapper.reflectprovides RowMappers that reflectively construct result types using techniques like constructor injection or JavaBeans setters.org.jdbi.v3.core.mapper.reflect.internal org.jdbi.v3.jpa Thejpaplugin provides minimal support for discovering JPA annotations likeColumn.org.jdbi.v3.sqlobject.config Thesqlobject.configpackage defines configuration annotations that modify theJdbiconfiguration used as the context for executing SqlObject methods, such as registering handled types.org.jdbi.v3.vavr vavris a functional programming library for the JVM. -
-
Uses of RowMapperFactory in org.jdbi.v3.core.config
Methods in org.jdbi.v3.core.config with parameters of type RowMapperFactory Modifier and Type Method Description default ThisConfigurable. registerRowMapper(RowMapperFactory factory)Convenience method forgetConfig(RowMappers.class).register(factory) -
Uses of RowMapperFactory in org.jdbi.v3.core.mapper
Classes in org.jdbi.v3.core.mapper that implement RowMapperFactory Modifier and Type Class Description classGenericMapMapperFactoryFactory for a RowMapper that can map resultset rows to column name/generic valueMaps.(package private) classInferredRowMapperFactoryA generic RowMapperFactory that reflectively inspects aRowMapper<T>and maps only to columns of typeT.Fields in org.jdbi.v3.core.mapper with type parameters of type RowMapperFactory Modifier and Type Field Description private java.util.List<RowMapperFactory>RowMappers. factoriesprivate JdbiInterceptionChainHolder<RowMapper<?>,RowMapperFactory>RowMappers. inferenceInterceptorsMethods in org.jdbi.v3.core.mapper that return RowMapperFactory Modifier and Type Method Description (package private) static RowMapperFactoryMapEntryMapper. factory()static RowMapperFactoryRowMapperFactory. of(java.lang.reflect.Type type, RowMapper<?> mapper)Create a RowMapperFactory from a givenRowMapperthat matches aTypeexactly.Methods in org.jdbi.v3.core.mapper that return types with arguments of type RowMapperFactory Modifier and Type Method Description JdbiInterceptionChainHolder<RowMapper<?>,RowMapperFactory>RowMappers. getInferenceInterceptors()Returns theJdbiInterceptionChainHolderfor the RowMapper inference.Methods in org.jdbi.v3.core.mapper with parameters of type RowMapperFactory Modifier and Type Method Description RowMappersRowMappers. register(RowMapperFactory factory)Register a row mapper factory. -
Uses of RowMapperFactory in org.jdbi.v3.core.mapper.reflect
Methods in org.jdbi.v3.core.mapper.reflect that return RowMapperFactory Modifier and Type Method Description static RowMapperFactoryBeanMapper. factory(java.lang.Class<?> type)Returns a mapper factory that maps to the given bean classstatic RowMapperFactoryBeanMapper. factory(java.lang.Class<?> type, java.lang.String prefix)Returns a mapper factory that maps to the given bean classstatic RowMapperFactoryConstructorMapper. factory(java.lang.Class<?> clazz)Use the only declared constructor to map a class.static RowMapperFactoryConstructorMapper. factory(java.lang.Class<?> clazz, java.lang.String prefix)Use the only declared constructor to map a class.static RowMapperFactoryConstructorMapper. factory(java.lang.reflect.Constructor<?> constructor)Use aConstructor<T>to map its declaring type.static RowMapperFactoryConstructorMapper. factory(java.lang.reflect.Constructor<?> constructor, java.lang.String prefix)Use aConstructor<T>to map its declaring type.static RowMapperFactoryFieldMapper. factory(java.lang.Class<?> type)Returns a mapper factory that maps to the given bean classstatic RowMapperFactoryFieldMapper. factory(java.lang.Class<?> type, java.lang.String prefix)Returns a mapper factory that maps to the given bean class -
Uses of RowMapperFactory in org.jdbi.v3.core.mapper.reflect.internal
Classes in org.jdbi.v3.core.mapper.reflect.internal that implement RowMapperFactory Modifier and Type Class Description classPojoMapperFactoryRow mapper that inspects animmutables-style Immutable or Modifiable value class for properties and binds them in the style ofBeanMapper. -
Uses of RowMapperFactory in org.jdbi.v3.jpa
Classes in org.jdbi.v3.jpa that implement RowMapperFactory Modifier and Type Class Description classJpaMapperFactoryCreateJpaMappers forEntityannotated classes. -
Uses of RowMapperFactory in org.jdbi.v3.sqlobject.config
Methods in org.jdbi.v3.sqlobject.config that return types with arguments of type RowMapperFactory Modifier and Type Method Description java.lang.Class<? extends RowMapperFactory>value() -
Uses of RowMapperFactory in org.jdbi.v3.vavr
Classes in org.jdbi.v3.vavr that implement RowMapperFactory Modifier and Type Class Description (package private) classVavrTupleRowMapperFactory
-