I have a hashmap:
Map<Integer, List<String>> dataA = new HashMap<>();
that contains data imported from Excel spreadsheet. HashMap Keys contain row numbers and HashMap Values contain lists of cell values in particular row.
Now I need to sort this by specific column (or multiple columns) from the List.
How to do that?