com.businessobjects.jsf.sdk.properties
Class SortDirection

java.lang.Object
  extended bycom.businessobjects.jsf.sdk.properties.SortDirection

public class SortDirection
extends java.lang.Object

Contains fields that specify whether to use an ascending or descending direction to sort a list of items. This class is used to set the sort direction in the SortProps class.


Field Summary
static int Ascending
           The items are sorted in an alphanumeric ascending order (0-9, A-Z).
static int Descending
           The items are sorted in an alphanumeric descending order (Z-A, 9-0).
 
Constructor Summary
SortDirection()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Ascending

public static final int Ascending

The items are sorted in an alphanumeric ascending order (0-9, A-Z).

See Also:
Constant Field Values

Descending

public static final int Descending

The items are sorted in an alphanumeric descending order (Z-A, 9-0).

See Also:
Constant Field Values
Constructor Detail

SortDirection

public SortDirection()