Sorting in collection framework

We can sort the elements of:

  1. String objects
  2. Wrapper class objects
  3. User-defined class objects

Collections class provides static methods for sorting the elements of collection.If collection elements are of Set type, we can use TreeSet. But We cannot sort the elements of List. Collections class provides methods for sorting the elements of List type elements.
Method of Collections class for sorting List elements
public void sort(List list): is used to sort the elements of List. List elements must be of Comparable type.

Note: String class and Wrapper classes implements the Comparable interface. So if you store the objects of string or wrapper classes, it will be Comparable.

Example of Sorting the elements of List that contains string objects-

import java.util.*;
class Simple12{
public static void main(String args[]){

ArrayList al=new ArrayList();
al.add("Dinesh");
al.add("Sweetu");
al.add("Adesh");
al.add("Vinesh");

Collections.sort(al);
Iterator itr=al.iterator();

while(itr.hasNext()){
System.out.println(itr.next());
 }
}

}

Output:
Adesh
Dinesh
Sweetu
Vinesh

Example of Sorting the elements of List that contains Wrapper class objects

import java.util.*;
class Simple12{
public static void main(String args[]){

ArrayList al=new ArrayList();
al.add(Integer.valueOf(201));
al.add(Integer.valueOf(101));
al.add(230);//internally will be converted into objects as Integer.valueOf(230)

Collections.sort(al);

Iterator itr=al.iterator();
while(itr.hasNext()){
System.out.println(itr.next());
 }
}
}

Output:
101
201
230

<<Previous <<   || Index ||   >>Next >>
Previous
Next