Uses of Interface
io.helidon.dbclient.DbMapper
-
Packages that use DbMapper Package Description io.helidon.dbclient.spi Service provider interface for Helidon DB. -
-
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(io.helidon.common.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> TDbClientProviderBuilder. addMapper(DbMapper<TYPE> dbMapper, io.helidon.common.GenericType<TYPE> mappedType)Add a custom mapper with generic types support.<TYPE> TDbClientProviderBuilder. addMapper(DbMapper<TYPE> dbMapper, Class<TYPE> mappedClass)Add a custom mapper.
-