- java.lang.Object
- 
- io.helidon.dbclient.common.DbClientMapperProvider
 
- 
- All Implemented Interfaces:
- MapperProvider
 
 public class DbClientMapperProvider extends Object implements MapperProvider Java Service loader service to get database types mappers.
- 
- 
Constructor SummaryConstructors Constructor Description DbClientMapperProvider()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description <SOURCE,TARGET>
 Optional<Mapper<?,?>>mapper(Class<SOURCE> sourceClass, Class<TARGET> targetClass)Find a mapper that is capable of mapping from source to target classes.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface io.helidon.common.mapper.spi.MapperProvidermapper
 
- 
 
- 
- 
- 
Method Detail- 
mapperpublic <SOURCE,TARGET> Optional<Mapper<?,?>> mapper(Class<SOURCE> sourceClass, Class<TARGET> targetClass) Description copied from interface:MapperProviderFind a mapper that is capable of mapping from source to target classes.- Specified by:
- mapperin interface- MapperProvider
- Type Parameters:
- SOURCE- type of the source
- TARGET- type of the target
- Parameters:
- sourceClass- class of the source
- targetClass- class of the target
- Returns:
- a mapper that is capable of mapping (or converting) sources to targets
 
 
- 
 
-