public final enum javax.swing
SortOrder


Show All Login
Java SE 6
  
Extends: Enum
Details
SortOrder is an enumeration of the possible sort orderings.
version1.2 11/17/05
since1.6
See also javax.swing.RowSorter

Enum constants
final public static SortOrder ASCENDING
Enumeration value indicating the items are sorted in increasing order. For example, the set 1, 4, 0 sorted in ASCENDING order is 0, 1, 4.
final public static SortOrder DESCENDING
Enumeration value indicating the items are sorted in decreasing order. For example, the set 1, 4, 0 sorted in DESCENDING order is 4, 1, 0.
final public static SortOrder UNSORTED
Enumeration value indicating the items are unordered. For example, the set 1, 4, 0 in UNSORTED order is 1, 4, 0.

Methods
public static SortOrder valueOf(String name)
public static SortOrder[] values()