blob: 2941b1c08afe3b0c32e764dea63358bad2883d9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package cgeo.geocaching.sorting;
import cgeo.geocaching.Geocache;
import org.apache.commons.lang3.StringUtils;
/**
* sorts caches by name
*
*/
public class NameComparator extends AbstractCacheComparator {
@Override
protected boolean canCompare(Geocache cache) {
return StringUtils.isNotBlank(cache.getName());
}
@Override
protected int compareCaches(Geocache cache1, Geocache cache2) {
return cache1.getNameForSorting().compareToIgnoreCase(cache2.getNameForSorting());
}
}
|