blob: dc0304b0e0ae4074415eed6b8cc2c6619a7490be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package cgeo.geocaching.sorting;
import cgeo.geocaching.Geocache;
/**
* sorts caches by the users own voting (if available at all)
*/
public class VoteComparator extends AbstractCacheComparator {
@Override
protected boolean canCompare(Geocache cache1, Geocache cache2) {
return true;
}
@Override
protected int compareCaches(Geocache cache1, Geocache cache2) {
// if there is no vote available, put that cache at the end of the list
return Float.compare(cache2.getMyVote(), cache1.getMyVote());
}
}
|