I have an ArrayList<List> where the Lists have string values that hold a name and then a double converted to a string. 
Example:
List<String> list = New List; 
list.add("Abraham");
list.add(String.valueOf(0.65));
List<String> list2 = New List; 
list2.add("Bowers");
list2.add(String.valueOf(0.89));
ArrayList<List> arrayList = new ArrayList<>();
arrayList.add(list); 
arrayList.add(list2); 
How can I sort the ArrayList in descending order by the value of the double? 
 
     
     
     
    