Compare the two objects to determine the relative ordering. @param o1 an Object to compare @param o2 an Object to compare @return an int < 0 if object1 is less than object2, 0 if they are equal, and > 0 if object1 is greater @exception ClassCastException
(String o1, String o2)
| 116 | * if objects are not the correct type |
| 117 | */ |
| 118 | public int compare(String o1, String o2) { |
| 119 | return o1.compareToIgnoreCase(o2); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | /** |
nothing calls this directly
no test coverage detected