Interface EntityDtoMapper<T,S>

All Known Implementing Classes:
EntityDtoMapperImpl

public interface EntityDtoMapper<T,S>
  • Method Summary

    Modifier and Type
    Method
    Description
    toDto(T sourceEntity, Class<S> targetDtoClass)
     
    toDto(T sourceEntity, S targetDto)
     
    toEntity(S sourceDto, Class<T> targetEntityClass)
     
  • Method Details

    • toEntity

      T toEntity(S sourceDto, Class<T> targetEntityClass)
    • toDto

      S toDto(T sourceEntity, Class<S> targetDtoClass)
    • toDto

      S toDto(T sourceEntity, S targetDto)