288289290291292293294
* Sets the reference comparator based on classic alphabetical order. * * @see #setComparator(Comparator) */ public void setAlphaComparator() { setComparator(new AlphabeticalComparator()); }
302303304305306307308
* @see <a href="http://www.davekoelle.com/alphanum.html">The original * Alphanum Algorithm from David Koelle</a> * @see #setComparator(Comparator) */ public void setAlphaNumComparator() { setComparator(new AlphabeticalComparator()); }