Uses of Interface
org.jdbi.v3.core.mapper.QualifiedColumnMapperFactory
Packages that use QualifiedColumnMapperFactory
Package
Description
The
config classes define a configuration registry starting from
each Jdbi instance.mappers take the JDBC ResultSet and produce Java results.-
Uses of QualifiedColumnMapperFactory in org.jdbi.v3.core.codec
Classes in org.jdbi.v3.core.codec that implement QualifiedColumnMapperFactoryModifier and TypeClassDescriptionclassCodecFactory 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 QualifiedColumnMapperFactoryModifier and TypeMethodDescriptiondefault 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 -
Uses of QualifiedColumnMapperFactory in org.jdbi.v3.core.mapper
Classes in org.jdbi.v3.core.mapper that implement QualifiedColumnMapperFactoryModifier and TypeClassDescription(package private) classA 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 QualifiedColumnMapperFactoryModifier and TypeFieldDescriptionprivate final List<QualifiedColumnMapperFactory>ColumnMappers.factoriesprivate final JdbiInterceptionChainHolder<ColumnMapper<?>,QualifiedColumnMapperFactory> ColumnMappers.inferenceInterceptorsMethods in org.jdbi.v3.core.mapper that return QualifiedColumnMapperFactoryModifier and TypeMethodDescriptionstatic 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 QualifiedColumnMapperFactoryModifier and TypeMethodDescriptionColumnMappers.getInferenceInterceptors()Returns theJdbiInterceptionChainHolderfor the ColumnMapper inference.Methods in org.jdbi.v3.core.mapper with parameters of type QualifiedColumnMapperFactoryModifier and TypeMethodDescriptionColumnMappers.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 QualifiedColumnMapperFactoryModifier and TypeClassDescriptionclassAn extendedCodecFactorywhich can resolve Codecs for subtypes.