From: David ‘Bombe’ Roden Date: Wed, 29 Jun 2011 07:12:24 +0000 (+0200) Subject: Add comparator that sorts Sones by number of posts. X-Git-Tag: 0.6.6^2~47 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=73978bb8f09406e940c1c733aefccdc963744404 Add comparator that sorts Sones by number of posts. --- diff --git a/src/main/java/net/pterodactylus/sone/data/Sone.java b/src/main/java/net/pterodactylus/sone/data/Sone.java index ca87856..3477346 100644 --- a/src/main/java/net/pterodactylus/sone/data/Sone.java +++ b/src/main/java/net/pterodactylus/sone/data/Sone.java @@ -71,6 +71,18 @@ public class Sone implements Fingerprintable, Comparable { } }; + /** Comparator that sorts Sones by numbers of posts (descending). */ + public static final Comparator POST_COUNT_COMPARATOR = new Comparator() { + + /** + * {@inheritDoc} + */ + @Override + public int compare(Sone leftSone, Sone rightSone) { + return (leftSone.getPosts().size() != rightSone.getPosts().size()) ? (rightSone.getPosts().size() - leftSone.getPosts().size()) : (rightSone.getReplies().size() - leftSone.getReplies().size()); + } + }; + /** Filter to remove Sones that have not been downloaded. */ public static final Filter EMPTY_SONE_FILTER = new Filter() {