public class AlphanumComparator extends Object implements Comparator<String>
The Alphanum Algorithm is discussed here
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
This is an updated version with enhancements made by Daniel Migowski, Andre Bogus, and David Koelle
To use this class: Use the static "sort" method from the java.util.Collections class: Collections.sort(your list, new AlphanumComparator());
| Modifier and Type | Field and Description |
|---|---|
static AlphanumComparator |
instance |
| Modifier and Type | Method and Description |
|---|---|
int |
compare(String s1,
String s2) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitcomparing, comparing, comparingDouble, comparingInt, comparingLong, equals, naturalOrder, nullsFirst, nullsLast, reversed, reverseOrder, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLongpublic static final AlphanumComparator instance
public int compare(String s1, String s2)
compare in interface Comparator<String>Copyright © 2015–2021 Fiji. All rights reserved.