Uses of Class
org.simpleflatmapper.jdbc.JdbcMapperBuilder
Packages that use JdbcMapperBuilder
-
Uses of JdbcMapperBuilder in org.simpleflatmapper.jdbc
Methods in org.simpleflatmapper.jdbc that return JdbcMapperBuilderModifier and TypeMethodDescriptionJdbcMapperBuilder.addMapping(String column, int index, int sqlType) add a new mapping to the specified property with the specified index and the specified type.JdbcMapperBuilder.addMapping(String column, int index, int sqlType, Object... properties) add a new mapping to the specified property with the specified index, the specified type.JdbcMapperBuilder.addMapping(String column, int index, int sqlType, org.simpleflatmapper.map.property.FieldMapperColumnDefinition<JdbcColumnKey> columnDefinition) add a new mapping to the specified property with the specified index, the specified type.JdbcMapperBuilder.addMapping(ResultSetMetaData metaData) add the all the property present in the metaData<T> JdbcMapperBuilder<T>JdbcMapperFactory.newBuilder(Class<T> target) Will create a newInstance of JdbcMapperBuilder on the specified target class.<T> JdbcMapperBuilder<T>JdbcMapperFactory.newBuilder(Type target) Will create a newInstance of JdbcMapperBuilder on the specified type.<T> JdbcMapperBuilder<T>JdbcMapperFactory.newBuilder(org.simpleflatmapper.reflect.meta.ClassMeta<T> classMeta) <T> JdbcMapperBuilder<T>JdbcMapperFactory.newBuilder(org.simpleflatmapper.util.TypeReference<T> target) Will create a newInstance of JdbcMapperBuilder on the type T specified by the typeReference.