| Enum Constant and Description | 
|---|
| BOTHDisplay sort arrow above each field header AND in corner above scrollbar.BOTH:"both", // NOTE: Canvas establishes this
 constant | 
| CORNERDisplay sort arrow in the upper-right corner (above the scrollbar) only. | 
| FIELDDisplay sort arrow above each field header only. | 
| NONEDon't show a sort arrow at all. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static SortArrow | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static SortArrow[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SortArrow NONE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "none".
public static final SortArrow CORNER
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "corner".
public static final SortArrow FIELD
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "field".
public static final SortArrow BOTH
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "both".
public static SortArrow[] values()
for (SortArrow c : SortArrow.values()) System.out.println(c);
public static SortArrow valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null