<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Using Collections.sort and Comparator in Java</title>
	<atom:link href="http://www.vogella.de/blog/2009/08/04/collections-sort-java/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vogella.de/blog/2009/08/04/collections-sort-java/</link>
	<description>Tips around Eclipse and Android programming</description>
	<lastBuildDate>Thu, 09 Feb 2012 16:32:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: fatih1</title>
		<link>http://www.vogella.de/blog/2009/08/04/collections-sort-java/comment-page-1/#comment-2054</link>
		<dc:creator>fatih1</dc:creator>
		<pubDate>Wed, 26 May 2010 07:35:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.vogella.de/blog/?p=794#comment-2054</guid>
		<description>short but nice info</description>
		<content:encoded><![CDATA[<p>short but nice info</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lars Vogel</title>
		<link>http://www.vogella.de/blog/2009/08/04/collections-sort-java/comment-page-1/#comment-333</link>
		<dc:creator>Lars Vogel</dc:creator>
		<pubDate>Thu, 06 Aug 2009 14:42:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.vogella.de/blog/?p=794#comment-333</guid>
		<description>The Comparator is needed if you have an object which does not implement the Comparable interface. But thanks for the hint; in case you have an object which implements Comparable interface reverseOrder() looks easier.</description>
		<content:encoded><![CDATA[<p>The Comparator is needed if you have an object which does not implement the Comparable interface. But thanks for the hint; in case you have an object which implements Comparable interface reverseOrder() looks easier.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ppow</title>
		<link>http://www.vogella.de/blog/2009/08/04/collections-sort-java/comment-page-1/#comment-332</link>
		<dc:creator>ppow</dc:creator>
		<pubDate>Thu, 06 Aug 2009 14:28:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.vogella.de/blog/?p=794#comment-332</guid>
		<description>If you want to sort in reverse order you should always use Collections.reverseOrder(Comparator) instead of implementing your own comparator. It is really easy to make an error when writing one, better to rely on provided and well tested libraries.

Use Collections.sort(list, Collections.reverseOrder()) to sort a list of integers in a reverse order.</description>
		<content:encoded><![CDATA[<p>If you want to sort in reverse order you should always use Collections.reverseOrder(Comparator) instead of implementing your own comparator. It is really easy to make an error when writing one, better to rely on provided and well tested libraries.</p>
<p>Use Collections.sort(list, Collections.reverseOrder()) to sort a list of integers in a reverse order.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

