com.bristle.javalib.xml
Class XSLUtil.SortDataType
java.lang.Object
com.bristle.javalib.xml.XSLUtil.SortDataType
- Enclosing class:
- XSLUtil
public static class XSLUtil.SortDataType
- extends Object
This class represents an enumerated type that identifies data types to
sort by.
A number sort would produce: 2, 3, 10.
A text sort would produce: 10, 2, 3.
Usage:
- The following are typical scenarios for using this class:
XSLUtil.SortDataType dataType = XSLUtil.SortDataType.NUMBER;
if (dataType == XSLUtil.SortDataType.TEXT) ...
aCallToSomeMethod(..., XSLUtil.SortDataType.NUMBER, ...);
TEXT
public static final XSLUtil.SortDataType TEXT
NUMBER
public static final XSLUtil.SortDataType NUMBER
toString
public String toString()
- Overrides:
toString in class Object