Uses of Class
io.helidon.common.mapper.MapperException
-
Packages that use MapperException Package Description io.helidon.common.mapper Support for mapping of types.io.helidon.dbclient Reactive Database API for Helidon.io.helidon.dbclient.mongodb Helidon DB integration for reactive mongoDB. -
-
Uses of MapperException in io.helidon.common.mapper
Methods in io.helidon.common.mapper that throw MapperException Modifier and Type Method Description <SOURCE,TARGET>
TARGETMapperManager. map(SOURCE source, GenericType<SOURCE> sourceType, GenericType<TARGET> targetType)
Map from source to target.<SOURCE,TARGET>
TARGETMapperManager. map(SOURCE source, Class<SOURCE> sourceType, Class<TARGET> targetType)
Map from source to target. -
Uses of MapperException in io.helidon.dbclient
Methods in io.helidon.dbclient that throw MapperException Modifier and Type Method Description <T> T
DbColumn. as(GenericType<T> type)
Value of this column as a generic type.<T> T
DbColumn. as(Class<T> type)
Typed value of this column.<T> T
DbRow. as(GenericType<T> type)
Map this row to an object using aDbMapper
.<T> T
DbRow. as(Class<T> type)
Get specific class instance representation of this row.<T> T
DbMapperManager. read(DbRow row, GenericType<T> expectedType)
Read database row into a typed value.<T> T
DbMapperManager. read(DbRow row, Class<T> expectedType)
Read database row into a typed value. -
Uses of MapperException in io.helidon.dbclient.mongodb
Methods in io.helidon.dbclient.mongodb that throw MapperException Modifier and Type Method Description <T> T
MongoDbColumn. as(GenericType<T> type)
<T> T
MongoDbColumn. as(Class<T> type)
-