Uses of Class
org.jdesktop.swingx.decorator.SortOrder

Packages that use SortOrder
org.jdesktop.swingx Contains extensions to the Swing GUI toolkit, including new and enhanced components that provide functionality commonly required by rich, data-centric client applications. 
org.jdesktop.swingx.decorator Contains API used to implement coordinated sorting, filtering and highlighting of the extended Swing cell-rendering component classes JXTable, JXTreeTable, JXTree, and JXList. 
 

Uses of SortOrder in org.jdesktop.swingx
 

Methods in org.jdesktop.swingx that return SortOrder
 SortOrder JXList.getSortOrder()
          Returns the SortOrder.
 SortOrder JXTable.getSortOrder(int columnIndex)
          Returns the SortOrder of the given column.
 SortOrder JXTable.getSortOrder(Object identifier)
          Returns the SortOrder of the given column.
 

Methods in org.jdesktop.swingx with parameters of type SortOrder
 void JXTable.setSortOrder(int columnIndex, SortOrder sortOrder)
          Sorts the table by the given column using SortOrder.
 void JXTable.setSortOrder(Object identifier, SortOrder sortOrder)
          Sorts the table by the given column using the SortOrder.
 void JXList.setSortOrder(SortOrder sortOrder)
          Sorts the list using SortOrder.
 

Uses of SortOrder in org.jdesktop.swingx.decorator
 

Fields in org.jdesktop.swingx.decorator declared as SortOrder
static SortOrder SortOrder.ASCENDING
           
static SortOrder SortOrder.DESCENDING
           
static SortOrder SortOrder.UNSORTED
           
 

Methods in org.jdesktop.swingx.decorator that return SortOrder
 SortOrder Sorter.getSortOrder()
           
 SortOrder SortKey.getSortOrder()
          The sort order, ascending, descending or unsorted.
 SortOrder FilterPipeline.SorterBasedSortController.getSortOrder(int column)
           
 SortOrder SortController.getSortOrder(int column)
          Get the sort order of the specified column.
 

Constructors in org.jdesktop.swingx.decorator with parameters of type SortOrder
SortKey(SortOrder sortOrder, int column)
           
SortKey(SortOrder sortOrder, int column, Comparator comparator)