Skip to content

Commit

Permalink
Merge pull request #116 from Brutus5000/patch-1
Browse files Browse the repository at this point in the history
Fix java.time class naming in readme
  • Loading branch information
ozlerhakan committed Dec 12, 2019
2 parents c133035 + 3a15e3f commit 773e59f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public class Employee {
----
<1> As of 1.10, optionally we can access the index of each row item by using the `ExcelRow` annotation. Annotated variable should be of type `int`, `double`, `float` or `long`.
<2> A field must be annotated with `@ExcelCell` along with its property in order to get the value from the right coordinate in the target excel sheet.
<3> An annotated field can be either protected, private or public modifier. The field may be either of `boolean`, `int`, `long`, `float`, `double`, or their wrapper classes. You can add a field of `java.util.Date`, `java.time.DateTime` and `String` as well.
<3> An annotated field can be either protected, private or public modifier. The field may be either of `boolean`, `int`, `long`, `float`, `double`, or their wrapper classes. You can add a field of `java.util.Date`, `java.time.LocalDate`, `java.time.LocalDateTime` and `String` as well.

This is the excel file (`employees.xlsx`) we want to map to a list of `Employee` instance:

Expand Down

0 comments on commit 773e59f

Please sign in to comment.