com.bristle.javalib.xml
Class XSLUtil.SortCaseOrder
java.lang.Object
com.bristle.javalib.xml.XSLUtil.SortCaseOrder
- Enclosing class:
- XSLUtil
public static class XSLUtil.SortCaseOrder
- extends Object
This class represents an enumerated type that identifies sort case orders
(upper case first, lower case first, case insensitive).
Usage:
- The following are typical scenarios for using this class:
XSLUtil.SortCaseOrder order = XSLUtil.SortCaseOrder.LOWER_CASE_FIRST;
if (order == XSLUtil.SortCaseOrder.UPPER_CASE_FIRST) ...
aCallToSomeMethod(..., XSLUtil.SortCaseOrder.CASE_INSENSITIVE, ...);
UPPER_CASE_FIRST
public static final XSLUtil.SortCaseOrder UPPER_CASE_FIRST
LOWER_CASE_FIRST
public static final XSLUtil.SortCaseOrder LOWER_CASE_FIRST
CASE_INSENSITIVE
public static final XSLUtil.SortCaseOrder CASE_INSENSITIVE
toString
public String toString()
- Overrides:
toString in class Object