I am looking to implement a sort feature for my address book application.
I want to sort an ArrayList<Contact> contactArray
. Contact
is a class which contains four fields: name, home number, mobile number and address. I want to sort on name
.
How can I write a custom sort function to do this?