When using OpenCSV in order to write csv i'm using the CSVBindByName annotation this way:
@CsvBindByName(column = "Date")
private Long date;
@CsvBindByName(column = "Post content")
private String text;
But in the generated file the headers are all in UPPERCASE: DATE, POST CONTENT
Is there any way to generate the exact name in the annotation?