I want to sort objects by a string they have. Just wondering does this make sense?
Before now I have only used Arrays.sort(BlahList); But now I could have many objects and not just an arraylist of strings.
public class Contact implements Comparable
{
    private string name;
    public compareTo (Contact Contact1)
    {
        return this.name.compareTo(Contact1.name);
    }
}
and in the main method I have:
Collections.sort(ContactList);
I would also like to know if this would work for integers if the name was age?