Uses of Interface
org.jdbi.v3.core.mapper.QualifiedColumnMapperFactory
-
Packages that use QualifiedColumnMapperFactory Package Description org.jdbi.v3.core.codec org.jdbi.v3.core.config Theconfigclasses define a configuration registry starting from eachJdbiinstance.org.jdbi.v3.core.enums.internal org.jdbi.v3.core.mapper mappers take the JDBC ResultSet and produce Java results.org.jdbi.v3.guava.codec -
-
Uses of QualifiedColumnMapperFactory in org.jdbi.v3.core.codec
Classes in org.jdbi.v3.core.codec that implement QualifiedColumnMapperFactory Modifier and Type Class Description classCodecFactoryCodecFactory provides column mappers and arguments for bidirectional mapping types to database columns. -
Uses of QualifiedColumnMapperFactory in org.jdbi.v3.core.config
Methods in org.jdbi.v3.core.config with parameters of type QualifiedColumnMapperFactory Modifier and Type Method Description default ThisConfigurable. registerColumnMapper(QualifiedColumnMapperFactory factory)Convenience method forgetConfig(ColumnMappers.class).register(factory) -
Uses of QualifiedColumnMapperFactory in org.jdbi.v3.core.enums.internal
Classes in org.jdbi.v3.core.enums.internal that implement QualifiedColumnMapperFactory Modifier and Type Class Description classEnumMapperFactory -
Uses of QualifiedColumnMapperFactory in org.jdbi.v3.core.mapper
Classes in org.jdbi.v3.core.mapper that implement QualifiedColumnMapperFactory Modifier and Type Class Description (package private) classInferredColumnMapperFactoryA generic QualifiedColumnMapperFactory that reflectively inspects aColumnMapper<T>and maps only to columns of typeT, with type qualifiers equal to the qualifiers present on the mapper class.Fields in org.jdbi.v3.core.mapper with type parameters of type QualifiedColumnMapperFactory Modifier and Type Field Description private java.util.List<QualifiedColumnMapperFactory>ColumnMappers. factoriesprivate JdbiInterceptionChainHolder<ColumnMapper<?>,QualifiedColumnMapperFactory>ColumnMappers. inferenceInterceptorsMethods in org.jdbi.v3.core.mapper that return QualifiedColumnMapperFactory Modifier and Type Method Description static QualifiedColumnMapperFactoryQualifiedColumnMapperFactory. adapt(ColumnMapperFactory factory)Adapts aColumnMapperFactoryinto a QualifiedColumnMapperFactory.static <T> QualifiedColumnMapperFactoryQualifiedColumnMapperFactory. of(QualifiedType<T> type, ColumnMapper<T> mapper)Create a QualifiedColumnMapperFactory from a givenColumnMapperthat matches a singleQualifiedTypeexactly.Methods in org.jdbi.v3.core.mapper that return types with arguments of type QualifiedColumnMapperFactory Modifier and Type Method Description JdbiInterceptionChainHolder<ColumnMapper<?>,QualifiedColumnMapperFactory>ColumnMappers. getInferenceInterceptors()Returns theJdbiInterceptionChainHolderfor the ColumnMapper inference.Methods in org.jdbi.v3.core.mapper with parameters of type QualifiedColumnMapperFactory Modifier and Type Method Description ColumnMappersColumnMappers. register(QualifiedColumnMapperFactory factory)Register a qualified column mapper factory. -
Uses of QualifiedColumnMapperFactory in org.jdbi.v3.guava.codec
Classes in org.jdbi.v3.guava.codec that implement QualifiedColumnMapperFactory Modifier and Type Class Description classTypeResolvingCodecFactoryAn extendedCodecFactorywhich can resolve Codecs for subtypes.
-