Return-Path: Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: (qmail 4113 invoked from network); 13 Oct 2009 23:29:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 13 Oct 2009 23:29:56 -0000 Received: (qmail 86380 invoked by uid 500); 13 Oct 2009 23:29:56 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 86276 invoked by uid 500); 13 Oct 2009 23:29:55 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 86257 invoked by uid 99); 13 Oct 2009 23:29:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Oct 2009 23:29:55 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Oct 2009 23:29:52 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4B922234C045 for ; Tue, 13 Oct 2009 16:29:31 -0700 (PDT) Message-ID: <753516207.1255476571295.JavaMail.jira@brutus> Date: Tue, 13 Oct 2009 16:29:31 -0700 (PDT) From: "Sergei Ivanov (JIRA)" To: issues@commons.apache.org Subject: [jira] Commented: (LANG-536) Add isSorted() to ArrayUtils In-Reply-To: <1151342296.1253810596124.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LANG-536?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12765305#action_12765305 ] Sergei Ivanov commented on LANG-536: ------------------------------------ Well, the only problem I have with commons-collections is that it's grown to be a behemoth of a library. commons-lang managed to stay slimmer over time. Having to import the entire bulk of commons-collections will always be a major deterrent for me. If they could only mavenise it properly and split into smaller modules! Apart from that I don't mind the method that takes Iterable -- makes all sense. Secondly, Arrays.asList() only works for arrays of objects. Does not work for arrays of primitives such as int[]. Also, doubles and floats have a special comparison order, implemented since java 1.4 in Double.compare(double, double) and Float.compare(float, float) respectively. Thirdly, as arrays are not generic-friendly, the code above (while perfectly valid) produces compiler warnings (visible if you specify -Xlint:unchecked for javac). The annotation suppresses these warnings and warning highlighting in IntelliJ IDEA too. > Add isSorted() to ArrayUtils > ---------------------------- > > Key: LANG-536 > URL: https://issues.apache.org/jira/browse/LANG-536 > Project: Commons Lang > Issue Type: New Feature > Reporter: Sergei Ivanov > Priority: Minor > Fix For: 3.0 > > > In my unit tests I often need to verify that an array is correctly sorted. > In order to achieve this, I've got two helper methods as follows. > Is it possible to integrate these methods into ArrayUtils? > {code} > /** > * Checks that the specified array of objects is in an ascending order > * according to the specified comparator. All elements in the array must be > * mutually comparable by the specified comparator (that is, > * c.compare(e1, e2) must not throw a ClassCastException > * for any elements e1 and e2 in the array). > * > * @param a the array to be checked. > * @param c the comparator to determine the order of the array. A > * null value indicates that the elements' > * {@linkplain Comparable natural ordering} should be used. > * @return {@code true}, if the array is sorted; {@code false}, otherwise. > * @throws ClassCastException if the array contains elements that are > * not mutually comparable using the specified comparator. > */ > public static boolean isSorted(final T[] a, final Comparator c) { > if (a.length <= 1) { > // Empty or singleton arrays are always sorted > return true; > } > // Otherwise, check that every element is not smaller than the previous > T previous = a[0]; > for (int i = 1, n = a.length; i < n; i++) { > final T current = a[i]; > if (c.compare(previous, current) > 0) { > return false; > } > previous = current; > } > return true; > } > /** > * Checks that the specified array of objects is in an ascending order, > * according to the {@linkplain Comparable natural ordering} of its elements. > * All elements in the array must implement the {@link Comparable} interface. > * Furthermore, all elements in the array must be mutually comparable > * (that is, e1.compareTo(e2) must not throw a ClassCastException > * for any elements e1 and e2 in the array). > * > * @param a the array to be checked. > * @return {@code true}, if the array is sorted; {@code false}, otherwise. > * @throws ClassCastException if the array contains elements that are not > * mutually comparable (for example, strings and integers). > */ > @SuppressWarnings({"unchecked"}) > public static boolean isSorted(final T[] a) { > if (a.length <= 1) { > // Empty or singleton arrays are always sorted > return true; > } > // Otherwise, check that every element is not smaller than the previous > T previous = a[0]; > for (int i = 1, n = a.length; i < n; i++) { > final T current = a[i]; > if (((Comparable) previous).compareTo(previous) > 0) { > return false; > } > previous = current; > } > return true; > } > {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.