Package org.jooq.impl

Class DefaultRecordUnmapper<E,​R extends Record>

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      R unmap​(E source)
      Unmap a POJO into a record.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DefaultRecordUnmapper

        public DefaultRecordUnmapper​(java.lang.Class<? extends E> type,
                                     RecordType<R> rowType,
                                     Configuration configuration)
    • Method Detail

      • unmap

        public final R unmap​(E source)
        Description copied from interface: RecordUnmapper
        Unmap a POJO into a record.
        Specified by:
        unmap in interface RecordUnmapper<E,​R extends Record>
        Parameters:
        source - The source object to copy data from. This is never null.