The question is not too dificult: How do I best implement a table in Java.
I wish to have something like a table in a database. Named columns and numbered rows. My values are Integer
.
My inital idea: LinkedHashMap<String, ArrayList<Integer>>
But is there a better way of doing it?