blob: 9bbb5f76f1e25237017e6d4716c0d49074fec03f (
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 terrain rating
*
*/
public class TerrainComparator extends AbstractCacheComparator {
@Override
protected boolean canCompare(final Geocache cache) {
return cache.getTerrain() != 0.0;
}
@Override
protected int compareCaches(final Geocache cache1, final Geocache cache2) {
return Float.compare(cache1.getTerrain(), cache2.getTerrain());
}
}
|