Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!npeer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: bob smith Newsgroups: comp.lang.java.programmer Subject: Re: verbose sort Date: Thu, 2 Aug 2012 15:19:16 -0700 (PDT) Organization: http://groups.google.com Lines: 58 Message-ID: <5ce05de2-d803-4f30-aecb-bf02a5211f7e@googlegroups.com> References: NNTP-Posting-Host: 184.76.139.203 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1343945956 8132 127.0.0.1 (2 Aug 2012 22:19:16 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 2 Aug 2012 22:19:16 +0000 (UTC) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=184.76.139.203; posting-account=v1lx5wkAAAALWYfGBkwkMb2guPF9cW2u User-Agent: G2/1.0 X-Received-Bytes: 2006 Xref: csiph.com comp.lang.java.programmer:17009 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 my_list = new Vector(); > > > > > > > > > Comparator c = new Comparator() { > > > @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.