Uses of Interface
io.helidon.dbclient.DbMapper
-
Packages that use DbMapper Package Description io.helidon.dbclient.jdbc Helidon DB implementation for JDBC.io.helidon.dbclient.jsonp JSON Processing support for Helidon DB.io.helidon.dbclient.mongodb Helidon DB integration for reactive mongoDB.io.helidon.dbclient.spi Service provider interface for Helidon DB. -
-
Uses of DbMapper in io.helidon.dbclient.jdbc
Methods in io.helidon.dbclient.jdbc with parameters of type DbMapper Modifier and Type Method Description <TYPE> JdbcDbClientProviderBuilder
JdbcDbClientProviderBuilder. addMapper(DbMapper<TYPE> dbMapper, GenericType<TYPE> mappedType)
<TYPE> JdbcDbClientProviderBuilder
JdbcDbClientProviderBuilder. addMapper(DbMapper<TYPE> dbMapper, Class<TYPE> mappedClass)
-
Uses of DbMapper in io.helidon.dbclient.jsonp
Classes in io.helidon.dbclient.jsonp that implement DbMapper Modifier and Type Class Description class
JsonProcessingMapper
Json processing mapper.Methods in io.helidon.dbclient.jsonp that return types with arguments of type DbMapper Modifier and Type Method Description <T> Optional<DbMapper<T>>
JsonProcessingMapperProvider. mapper(Class<T> type)
-
Uses of DbMapper in io.helidon.dbclient.mongodb
Methods in io.helidon.dbclient.mongodb with parameters of type DbMapper Modifier and Type Method Description <TYPE> MongoDbClientProviderBuilder
MongoDbClientProviderBuilder. addMapper(DbMapper<TYPE> dbMapper, GenericType<TYPE> mappedType)
<TYPE> MongoDbClientProviderBuilder
MongoDbClientProviderBuilder. addMapper(DbMapper<TYPE> dbMapper, Class<TYPE> mappedClass)
-
Uses of DbMapper in io.helidon.dbclient.spi
Methods in io.helidon.dbclient.spi that return types with arguments of type DbMapper Modifier and Type Method Description default <T> Optional<DbMapper<T>>
DbMapperProvider. mapper(GenericType<T> type)
Returns mapper for specific type supporting generic types as well.<T> Optional<DbMapper<T>>
DbMapperProvider. mapper(Class<T> type)
Returns mapper for specific type.Methods in io.helidon.dbclient.spi with parameters of type DbMapper Modifier and Type Method Description <TYPE> T
DbClientProviderBuilder. addMapper(DbMapper<TYPE> dbMapper, GenericType<TYPE> mappedType)
Add a custom mapper with generic types support.<TYPE> T
DbClientProviderBuilder. addMapper(DbMapper<TYPE> dbMapper, Class<TYPE> mappedClass)
Add a custom mapper.
-