com.lowagie.text
public class: StringCompare [javadoc |
source]
java.lang.Object
com.lowagie.text.StringCompare
All Implemented Interfaces:
Comparator
This class was used in the 1.1-version of iText (by Volker Richert).
Paulo Soares suggested I should add it to the original library, so
that in the future it would be easier to port it to the JDK1.1.x.
| Method from com.lowagie.text.StringCompare Summary: |
|---|
|
compare |
| Method from com.lowagie.text.StringCompare Detail: |
public int compare(Object o1,
Object o2) {
return ((String)o1).compareTo((String)o2);
}
|