Guest User

Untitled

a guest
Apr 26th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class CollatorComparator implements Comparator {
  2. private Collator collator = Collator.getInstance();
  3. public int compare(Object _o1, Object _o2) {
  4. return collator.compare(_o1.toString().toUpperCase(), _o2.toString().toUpperCase());
  5. }
  6. }
Add Comment
Please, Sign In to add comment