Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #17067

Re: verbose sort

Path csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!news.glorb.com!news-out.readnews.com!transit4.readnews.com!news-out.news.tds.net!newsreading01.news.tds.net!53ab2750!not-for-mail
From "bob smith" <bob.smith@1:261/38.remove-yy0-this>
Subject Re: verbose sort
Message-ID <501C1565.56026.calajapr@time.synchro.net> (permalink)
X-Comment-To markspace
Newsgroups comp.lang.java.programmer
In-Reply-To <501AC32E.55957.calajapr@time.synchro.net>
References <501AC32E.55957.calajapr@time.synchro.net>
X-FTN-AREA COMP.LANG.JAVA.PROGRAMMER
X-FTN-MSGID 1:261/38 3c0b66ad
X-FTN-REPLY 1:261/38 18dac2be
Content-Type text/plain; charset=IBM437
Content-Transfer-Encoding 8bit
X-Gateway time.synchro.net [Synchronet 3.16a-Win32 NewsLink 1.98]
Lines 66
Date Fri, 03 Aug 2012 18:54:16 GMT
NNTP-Posting-Host 69.21.70.65
X-Complaints-To news@tds.net
X-Trace newsreading01.news.tds.net 1344020056 69.21.70.65 (Fri, 03 Aug 2012 13:54:16 CDT)
NNTP-Posting-Date Fri, 03 Aug 2012 13:54:16 CDT
Organization tds.net
Xref csiph.com comp.lang.java.programmer:17067

Show key headers only | View raw


  To: markspace
From: bob smith <bob@coolfone.comze.com>

On Thursday, August 2, 2012 12:19:50 PM UTC-5, markspace wrote:
> On 8/2/2012 8:37 AM, bob smith wrote:
>
> > 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?
>
> >
>
>
>
>
>
>    Collections.sort( my_list, String.CASE_INSENSITIVE_ORDER );

Very nice, thanks.

--- 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 | NextPrevious in thread | Next in thread | Find similar | Unroll thread


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