Uses of Interface
org.jdbi.v3.core.mapper.ColumnMapperFactory
-
Packages that use ColumnMapperFactory Package Description org.jdbi.v3.core.array Thearraypackage binds Java arrays and collections to SQL arrays, and handles mapping array result types back to Java arrays and collections.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.json.internal org.jdbi.v3.postgres Thepostgresplugin provides improved support forjava.time,hstore,uuid, andenumtypes when configured with a recent Postgres database server.org.jdbi.v3.postgres.internal 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 ColumnMapperFactory in org.jdbi.v3.core.array
Classes in org.jdbi.v3.core.array that implement ColumnMapperFactory Modifier and Type Class Description classSqlArrayMapperFactoryMaps SQL array columns into Java arrays or other Java container types. -
Uses of ColumnMapperFactory in org.jdbi.v3.core.config
Methods in org.jdbi.v3.core.config with parameters of type ColumnMapperFactory Modifier and Type Method Description default ThisConfigurable. registerColumnMapper(ColumnMapperFactory factory)Convenience method forgetConfig(ColumnMappers.class).register(factory) -
Uses of ColumnMapperFactory in org.jdbi.v3.core.mapper
Classes in org.jdbi.v3.core.mapper that implement ColumnMapperFactory Modifier and Type Class Description (package private) classBoxedMapperFactoryColumn mapper factory which knows how to map boxed java primitives:BooleanByteCharacterShortIntegerLongFloatDoubleclassBuiltInMapperFactoryDeprecated.will be replaced by an opt-out plugin to give the core no hardwired behaviorclassEnumByNameMapperFactoryDeprecated.UsegetConfig(Enums.class).setEnumStrategy(BY_NAME)instead.classEnumByOrdinalMapperFactoryDeprecated.UsegetConfig(Enums.class).setEnumStrategy(BY_ORDINAL)instead.(package private) classEssentialsMapperFactoryColumn mapper factory which knows how to map high-level essentials like String:BigDecimalStringbyte[]UUIDclassGetObjectColumnMapperFactoryFactory that usesResultSet.getObject(int, Class)to fetch values.(package private) classInternetMapperFactoryColumn mapper factory which knows how to map networking related objects:InetAddressURLURI(package private) classJavaTimeMapperFactoryColumn mapper factory which knows how to map JavaTime objects:InstantLocalDateLocalTimeLocalDateTimeOffsetDateTimeZonedDateTimeZoneId(package private) classOptionalMapperFactoryColumn mapper factory which knows how to map Optionals:OptionalOptionalIntOptionalLongOptionalDouble(package private) classPrimitiveMapperFactoryColumn mapper factory which knows how to map java primitives:booleanbytecharshortintlongfloatdouble(package private) classSqlTimeMapperFactoryColumn mapper factory which knows how to map java.sql timekeeping objects:TimestampFields in org.jdbi.v3.core.mapper with type parameters of type ColumnMapperFactory Modifier and Type Field Description private static java.util.List<ColumnMapperFactory>BuiltInMapperFactory. FACTORIESDeprecated.Methods in org.jdbi.v3.core.mapper that return ColumnMapperFactory Modifier and Type Method Description static ColumnMapperFactoryGetObjectColumnMapperFactory. forClasses(java.lang.Class<?>... types)static ColumnMapperFactoryGetObjectColumnMapperFactory. forClasses(java.util.Set<java.lang.Class<?>> types)static ColumnMapperFactoryColumnMapperFactory. of(java.lang.reflect.Type type, ColumnMapper<?> mapper)Create a ColumnMapperFactory from a givenColumnMapperthat matches a single Type exactly.Methods in org.jdbi.v3.core.mapper with parameters of type ColumnMapperFactory Modifier and Type Method Description static QualifiedColumnMapperFactoryQualifiedColumnMapperFactory. adapt(ColumnMapperFactory factory)Adapts aColumnMapperFactoryinto a QualifiedColumnMapperFactory.ColumnMappersColumnMappers. register(ColumnMapperFactory factory)Register a column mapper factory. -
Uses of ColumnMapperFactory in org.jdbi.v3.json.internal
Classes in org.jdbi.v3.json.internal that implement ColumnMapperFactory Modifier and Type Class Description classJsonColumnMapperFactoryconverts a(@Json) Stringfetched by another mapper into a value object -
Uses of ColumnMapperFactory in org.jdbi.v3.postgres
Classes in org.jdbi.v3.postgres that implement ColumnMapperFactory Modifier and Type Class Description (package private) classBlobInputStreamColumnMapperFactory(package private) classClobReaderColumnMapperFactoryclassDurationColumnMapperFactoryA column mapper which maps Postgres'sPGIntervaltype to Java'sDuration.classJavaTimeMapperFactoryProvide mappers corresponding to java time types.classPeriodColumnMapperFactoryA column mapper which maps Postgres'sPGIntervaltype to Java'sPeriod.(package private) classPGobjectColumnMapperFactoryColumn mapper forPGobject. -
Uses of ColumnMapperFactory in org.jdbi.v3.postgres.internal
Classes in org.jdbi.v3.postgres.internal that implement ColumnMapperFactory Modifier and Type Class Description classBitStringEnumSetMapperFactory -
Uses of ColumnMapperFactory in org.jdbi.v3.sqlobject.config
Methods in org.jdbi.v3.sqlobject.config that return types with arguments of type ColumnMapperFactory Modifier and Type Method Description java.lang.Class<? extends ColumnMapperFactory>value()The column mapper factory class to register -
Uses of ColumnMapperFactory in org.jdbi.v3.vavr
Methods in org.jdbi.v3.vavr that return ColumnMapperFactory Modifier and Type Method Description (package private) static ColumnMapperFactoryVavrOptionMapper. factory()
-