looks like number of columns are fixed in your requirement
If the number of columns is fixed, use a List<String[]> or List<Object[]>.
I agree with Rob commnets. I have another recommendation with value objects.
you can have like following way also.
List<RowVO> , RowVO consists of col1,col2,col3,col4.