The Artima Developer Community
Sponsored Link

Java Buzz Forum
Java : Collection Framework : Collections (Sort List of User defined Objects)

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Ram N

Posts: 2777
Nickname: ramram
Registered: Jul, 2014

Ram N is Java Programmer
Java : Collection Framework : Collections (Sort List of User defined Objects) Posted: Jul 1, 2015 2:36 PM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Ram N.
Original Post: Java : Collection Framework : Collections (Sort List of User defined Objects)
Feed Title: JAVA EE
Feed URL: http://ramj2ee.blogspot.com/feeds/posts/default?alt=rss
Feed Description: This blog has viedo tutorials and Sample codes related to below Technologies. 1.J2EE 2.Java 3.Spring 4.Hibernate 5.Database 6.Oracle 7.Mysql 8.Design Patterns
Latest Java Buzz Posts
Latest Java Buzz Posts by Ram N
Latest Posts From JAVA EE

Advertisement

Click here to watch in Youtube :
https://www.youtube.com/watch?v=WYCwpE9NZig&list=UUhwKlOVR041tngjerWxVccw

Country.java
public class Country implements Comparable<Object>
{
private int countryId;
private String countryName;

public Country(int countryId, String countryName)
{
super();
this.countryId = countryId;
this.countryName = countryName;
}

public int getCountryId()
{
return countryId;
}

public void setCountryId(int countryId)
{
this.countryId = countryId;
}

public String getCountryName()
{
return countryName;
}

public void setCountryName(String countryName)
{
this.countryName = countryName;
}

/*
* This method has logic to arrange the Country objects in Ascending order based
* on CountryId
*/

@Override
public int compareTo(Object object)
{

System.out.println("\n"+"compareTo method is called by sort method : "+ object);
/*
* If this.countryId < country.countryId:then compare method will return
* -1
*
* If this.countryId > country.countryId:then compare method will return
* 1
*
* If this.countryId==country.countryId:then compare method will return
* 0
*/


Country country = (Country) object;

return (this.countryId < country.countryId) ? -1
: (this.countryId > country.countryId) ? 1 : 0;
}

}
CollectionsSortExample.java
import java.util.ArrayList;
import java.util.Collections;

/*
* Example of sort(List<T> list) method
*/


public class CollectionsSortExample
{

public static void main(String[] args)
{
Country india = new Country(1, "India");
Country china = new Country(4, "China");
Country usa = new Country(3, "USA");
Country srilanka = new Country(2, "Srilanka");

ArrayList<Country> countryList = new ArrayList<Country>();
countryList.add(india);
countryList.add(china);
countryList.add(usa);
countryList.add(srilanka);

System.out.println("Before Sort : ");

for (Country country : countryList)
{
System.out.println("Country Id: " + country.getCountryId() + " || "
+ "Country name: " + country.getCountryName());
}

/*
* Sorts the specified list into ascending order, according to the
* natural ordering of its elements.
*
* All elements in the list must implement the Comparable interface.
*/

Collections.sort(countryList);


System.out.println("\nAfter Sort : ");

for (Country country : countryList)
{
System.out.println("Country Id: " + country.getCountryId() + " || "
+ "Country name: " + country.getCountryName());
}

}

}

Output
Before Sort  : 
Country Id: 1 || Country name: India
Country Id: 4 || Country name: China
Country Id: 3 || Country name: USA
Country Id: 2 || Country name: Srilanka

compareTo method is called by sort method : Country@659e0bfd

compareTo method is called by sort method : Country@2a139a55

compareTo method is called by sort method : Country@2a139a55

compareTo method is called by sort method : Country@659e0bfd

compareTo method is called by sort method : Country@15db9742

compareTo method is called by sort method : Country@659e0bfd

After Sort :
Country Id: 1 || Country name: India
Country Id: 2 || Country name: Srilanka
Country Id: 3 || Country name: USA
Country Id: 4 || Country name: China
To Download CollectionsSortDemoUserDefinedCountryListApp Project Click the below link
https://sites.google.com/site/javaee4321/java-collections/CollectionsSortDemoUserDefinedCountryListApp.zip?attredirects=0&d=1

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Read: Java : Collection Framework : Collections (Sort List of User defined Objects)

    Topic: Java Tutorial | Java Initial Setup for Windows Operating System - Playlist Previous Topic   Next Topic Topic: Java : Collection Framework : Iterator Vs. Enumeration - Playlist

    Sponsored Links



    Google
      Web Artima.com   

    Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use