Class BaseMapper<E,D>

java.lang.Object
org.training.fundtransfer.mapper.BaseMapper<E,D>
Direct Known Subclasses:
FundTransferMapper

public abstract class BaseMapper<E,D> extends Object
  • Constructor Details

    • BaseMapper

      public BaseMapper()
  • Method Details

    • convertToEntity

      public abstract E convertToEntity(D dto, Object... args)
      Converts the given DTO to an entity object.
      Parameters:
      dto - the DTO to be converted
      args - additional arguments (optional)
      Returns:
      the converted entity object
    • convertToDto

      public abstract D convertToDto(E entity, Object... args)
      Converts the given entity to a DTO (Data Transfer Object) using the provided arguments.
      Parameters:
      entity - the entity to be converted
      args - additional arguments for the conversion process
      Returns:
      the DTO representing the converted entity
    • convertToEntity

      public Collection<E> convertToEntity(Collection<D> dto, Object... args)
      Converts a collection of DTOs to a collection of entities.
      Parameters:
      dto - the collection of DTOs to convert
      args - additional arguments
      Returns:
      the collection of entities
    • convertToDto

      public Collection<D> convertToDto(Collection<E> entities, Object... args)
      Converts a collection of entities to a collection of DTOs.
      Parameters:
      entities - the collection of entities to be converted
      args - additional arguments for the conversion
      Returns:
      the collection of DTOs
    • covertToEntityList

      public List<E> covertToEntityList(Collection<D> dtos, Object... args)
      Converts a collection of DTOs to a list of entities.
      Parameters:
      dtos - the collection of DTOs to convert
      args - additional arguments for the conversion
      Returns:
      the list of converted entities
    • convertToDtoList

      public List<D> convertToDtoList(Collection<E> entities, Object... args)
      Converts a collection of entities to a list of DTOs.
      Parameters:
      entities - the collection of entities to be converted
      args - additional arguments for the conversion
      Returns:
      the list of DTOs obtained from the conversion
    • convertToEntitySet

      public Set<E> convertToEntitySet(Collection<D> dtos, Object... args)
      Converts a collection of DTOs to a set of entities.
      Parameters:
      dtos - the collection of DTOs to convert
      args - additional arguments (optional)
      Returns:
      the set of entities converted from the DTOs