From 3cdce1f9efd5bfba7144680c0115e6a3830964e6 Mon Sep 17 00:00:00 2001 From: Marten Deinum Date: Mon, 19 Jan 2015 20:54:45 +0100 Subject: [PATCH] Javadoc Remove

and

where they didn't match. --- .../batch/item/excel/mapping/BeanPropertyRowMapper.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-batch-excel/src/main/java/org/springframework/batch/item/excel/mapping/BeanPropertyRowMapper.java b/spring-batch-excel/src/main/java/org/springframework/batch/item/excel/mapping/BeanPropertyRowMapper.java index 2634b21..3705077 100644 --- a/spring-batch-excel/src/main/java/org/springframework/batch/item/excel/mapping/BeanPropertyRowMapper.java +++ b/spring-batch-excel/src/main/java/org/springframework/batch/item/excel/mapping/BeanPropertyRowMapper.java @@ -39,22 +39,22 @@ import java.util.Set; * of the specified mapped target class. The mapped target class must be a * top-level class and it must have a default or no-arg constructor. * - *

Column values are mapped based on matching the column name as obtained from row set + * Column values are mapped based on matching the column name as obtained from row set * metadata to public setters for the corresponding properties. The names are matched either * directly or by transforming a name separating the parts with underscores to the same name * using "camel" case. * - *

Mapping is provided for fields in the target class for many common types, e.g.: + * Mapping is provided for fields in the target class for many common types, e.g.: * String, boolean, Boolean, byte, Byte, short, Short, int, Integer, long, Long, * float, Float, double, Double, BigDecimal, {@code java.util.Date}, etc. * - *

For 'null' values read from the Excel document, we will attempt to call the setter, but in the case of + * For 'null' values read from the Excel document, we will attempt to call the setter, but in the case of * Java primitives, this causes a TypeMismatchException. This class can be configured (using the * primitivesDefaultedForNullValue property) to trap this exception and use the primitives default value. * Be aware that if you use the values from the generated bean to update the database the primitive value * will have been set to the primitive's default value instead of null. * - *

Please note that this class is designed to provide convenience rather than high performance. + * Please note that this class is designed to provide convenience rather than high performance. * For best performance, consider using a custom {@link RowMapper} implementation. * * @author Marten Deinum