Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
KeyLabelComparator |
|
| 6.0;6 |
1 | /* | |
2 | * Copyright 2007-2009 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community License, Version 2.0 (the "License"); | |
5 | * you may not use this file except in compliance with the License. | |
6 | * You may obtain a copy of the License at | |
7 | * | |
8 | * http://www.opensource.org/licenses/ecl2.php | |
9 | * | |
10 | * Unless required by applicable law or agreed to in writing, software | |
11 | * distributed under the License is distributed on an "AS IS" BASIS, | |
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
13 | * See the License for the specific language governing permissions and | |
14 | * limitations under the License. | |
15 | */ | |
16 | package org.kuali.rice.kns.web.comparator; | |
17 | ||
18 | import java.io.Serializable; | |
19 | import java.util.Comparator; | |
20 | ||
21 | import org.kuali.rice.core.util.KeyLabelPair; | |
22 | ||
23 | public class KeyLabelComparator implements Serializable, Comparator { | |
24 | 0 | private static final KeyLabelComparator theInstance = new KeyLabelComparator(); |
25 | ||
26 | 0 | public KeyLabelComparator() { |
27 | 0 | } |
28 | ||
29 | public static KeyLabelComparator getInstance() { | |
30 | 0 | return theInstance; |
31 | } | |
32 | ||
33 | public int compare(Object o1, Object o2) { | |
34 | // null guard. non-null value is greater. equal if both are null | |
35 | 0 | if (null == o1 || null == o2) { |
36 | 0 | return (null == o1 && null == o2) ? 0 : ((null == o1) ? -1 : 1); |
37 | } | |
38 | ||
39 | 0 | KeyLabelPair keyLabelPair1 = (KeyLabelPair) o1; |
40 | 0 | KeyLabelPair keyLabelPair2 = (KeyLabelPair) o2; |
41 | ||
42 | 0 | if (null==keyLabelPair1 || null==keyLabelPair2) { |
43 | 0 | return (null==keyLabelPair1 && null==keyLabelPair2) ? 0 : ((null==keyLabelPair1) ? -1 : 1); |
44 | } | |
45 | ||
46 | 0 | if((keyLabelPair1.getKey() instanceof String) && (keyLabelPair2.getKey() instanceof String)) |
47 | 0 | return String.CASE_INSENSITIVE_ORDER.compare((String)keyLabelPair1.getKey(), (String)keyLabelPair2.getKey()); |
48 | ||
49 | 0 | return 0; |
50 | } | |
51 | ||
52 | } |