Package net.sf.basedb.util
Class StringLengthComparator
- java.lang.Object
-
- net.sf.basedb.util.StringLengthComparator
-
- All Implemented Interfaces:
Comparator<String>
public class StringLengthComparator extends Object implements Comparator<String>
A comparator implementation for strings that sorts them according to their length. Shortest strings are sorted first. Strings of equal length are sorted in their natural order.- Since:
- 2.16.2
- Author:
- Nicklas
- Last modified
- $Date: 2011-02-18 13:23:23 +0100 (fr, 18 feb 2011) $
-
-
Constructor Summary
Constructors Constructor Description StringLengthComparator()
Create a new string length comparator instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compare(String o1, String o2)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Comparator
equals, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
-
-
-
Method Detail
-
compare
public int compare(String o1, String o2)
- Specified by:
compare
in interfaceComparator<String>
-
-