I am using apache bindy and have used @FixedLengthRecord
@DateField(columnName="Name", pos=1, length=10)
private String name;
Now is there any functionality that when the name field is more than 10 characters then we can substring only 10 characters of it?
I belive trim is only for trimming blank spaces.