Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #16994
| From | "bob smith" <bob.smith@1:261/38.remove-s5y-this> |
|---|---|
| Subject | verbose sort |
| Message-ID | <501AC32E.55954.calajapr@time.synchro.net> (permalink) |
| Newsgroups | comp.lang.java.programmer |
| Date | 2012-08-02 19:12 +0000 |
| Organization | tds.net |
From: bob smith <bob@coolfone.comze.com>
I have some code that sorts a list like so:
Vector<String> my_list = new Vector<String>();
Comparator<String> c = new Comparator<String>() {
@Override
public int compare(String object1, String object2) {
if (object1 == null)
return -1;
if (object2 == null)
return 1;
object1 = object1.toLowerCase();
object2 = object2.toLowerCase();
return object1.compareTo(object2);
};
};
Collections.sort(my_list, c);
This seems like a lot of code for such a common operation. Is there a more
succinct way of doing this?
--- BBBS/Li6 v4.10 Dada-1
* Origin: Prism bbs (1:261/38)
--- Synchronet 3.16a-Win32 NewsLink 1.98
Time Warp of the Future BBS - telnet://time.synchro.net:24
Back to comp.lang.java.programmer | Previous | Next — Next in thread | Find similar | Unroll thread
verbose sort "bob smith" <bob.smith@1:261/38.remove-s5y-this> - 2012-08-02 19:12 +0000
Re: verbose sort "markspace" <markspace@1:261/38.remove-s5y-this> - 2012-08-02 19:12 +0000
Re: verbose sort "Eric Sosman" <eric.sosman@1:261/38.remove-s5y-this> - 2012-08-02 19:12 +0000
Re: verbose sort "markspace" <markspace@1:261/38.remove-s5y-this> - 2012-08-02 19:12 +0000
Re: verbose sort "Daniel Pitts" <daniel.pitts@1:261/38.remove-yy0-this> - 2012-08-03 18:54 +0000
Re: verbose sort "bob smith" <bob.smith@1:261/38.remove-yy0-this> - 2012-08-03 18:54 +0000
Re: verbose sort "Lew" <lew@1:261/38.remove-yy0-this> - 2012-08-03 18:54 +0000
Re: verbose sort "Roedy Green" <roedy.green@1:261/38.remove-yy0-this> - 2012-08-03 18:54 +0000
csiph-web