Class FieldMapper<T>

java.lang.Object
org.jdbi.v3.core.mapper.reflect.FieldMapper<T>
All Implemented Interfaces:
RowMapper<T>

public final class FieldMapper<T> extends Object implements RowMapper<T>
A row mapper which maps the columns in a statement into an object, using reflection to set fields on the object. All declared fields of the class and its superclasses may be set. Nested properties are supported via the Nested annotation. The mapped class must have a default constructor.