Uses of Interface
com.querydsl.sql.dml.Mapper

Packages that use Mapper
Package
Description
DML operations support
  • Uses of Mapper in com.querydsl.sql.dml

    Classes in com.querydsl.sql.dml that implement Mapper
    Modifier and Type
    Class
    Description
    class 
    Abstract base class for Mapper implementations
    class 
    Creates the mapping via @Column annotated fields in the object.
    class 
    Creates the mapping by inspecting object via bean inspection.
    class 
    Creates the mapping by inspecting the RelationalPath and Object via reflection.
    Methods in com.querydsl.sql.dml with parameters of type Mapper
    Modifier and Type
    Method
    Description
    <T> C
    AbstractSQLInsertClause.populate(T obj, Mapper<T> mapper)
    Populate the INSERT clause with the properties of the given bean using the given Mapper.
    <T> C
    AbstractSQLUpdateClause.populate(T obj, Mapper<T> mapper)
    Populate the UPDATE clause with the properties of the given bean using the given Mapper.