Sortowanie listy LIst według wartości podlisty

private List<String> subList;
private List<List<String>> records = new ArrayList<List<String>>();

for(....){

    subList = new ArrayList<String>();
    ...populate..
    records.add(subList);
}

Na przykład subList ma trzy ciągi - a, b i c. Chcę posortować rekordy według wartości b w subList.

records at 0 has a list of "10", "20", "30"
records at 1 has a list of "10", "05", "30"
records at 2 has a list of "10", "35", "30"

Po sortowaniu kolejność rekordów powinna wynosić -

records at 0 = records at 1 above
records at 1 = records at 0 above
records at 2 = records at 2 above

Co może być dobrym algorytmem?

questionAnswers(4)

yourAnswerToTheQuestion