I try to unmarshall csv file using apache camel and bindy. I created a model with some fields annotated like this:
@DataField(pos = 5, defaultValue = "")
The problem is when my csv file contains a column with empty String. Then I got a null value as a result of unmarshalling. I would like to have empty String there as well. How should I write my annotation to get this?