@FunctionalInterface
public interface RecordUnmapperProvider
RecordUnmapper
instances.
In order to inject custom POJO
to Record
mapping
behaviour, users can supply a custom RecordUnmapperProvider
to their
Configuration
instances. This provider will be used in any of these
methods (non-exhaustive list):
Record
Record.from(Object)
Record.from(Object, Field...)
Record.from(Object, int...)
Record.from(Object, Name...)
Record.from(Object, String...)
DSLContext
While not strictly required, it is advisable to implement a
RecordUnmapperProvider
whose behaviour is consistent with the
configured RecordMapperProvider
.
RecordUnmapper
,
Configuration
Modifier and Type | Method and Description |
---|---|
<E,R extends Record> |
provide(java.lang.Class<? extends E> type,
RecordType<R> recordType)
Provide a
RecordUnmapper instance. |
<E,R extends Record> RecordUnmapper<E,R> provide(java.lang.Class<? extends E> type, RecordType<R> recordType)
RecordUnmapper
instance.
Implementations are free to choose whether this method returns new instances at every call or whether the same instance is returned repetitively.
type
- The user type that was passed into
Record.from(Object)
or any other method.recordType
- The RecordType
of records that shall be
mapped by the returned RecordUnmapper
.RecordUnmapper
instance.RecordUnmapper
,
DefaultRecordUnmapper
,
DefaultRecordUnmapperProvider
Copyright © 2018. All Rights Reserved.