blob: 548ec7a02746d293c52631f59b99f62e70ad37a4 (
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.cgCache;
/**
* sorts caches by last visited date
*
*/
public class VisitComparator extends AbstractCacheComparator {
@Override
protected boolean canCompare(final cgCache cache1, final cgCache cache2) {
return cache1.getVisitedDate() > 0 && cache2.getVisitedDate() > 0;
}
@Override
protected int compareCaches(final cgCache cache1, final cgCache cache2) {
return Long.valueOf(cache2.getVisitedDate()).compareTo(cache1.getVisitedDate());
}
}
|