Uses of Class
org.jdesktop.swingx.decorator.SortOrder
-
Packages that use SortOrder Package Description 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 Modifier and Type Method Description SortOrder
JXList. getSortOrder()
Returns the SortOrder.SortOrder
JXTable. getSortOrder(int columnIndex)
Returns the SortOrder of the given column.SortOrder
JXTable. getSortOrder(java.lang.Object identifier)
Returns the SortOrder of the given column.Methods in org.jdesktop.swingx with parameters of type SortOrder Modifier and Type Method Description void
JXList. setSortOrder(SortOrder sortOrder)
Sorts the list using SortOrder.void
JXTable. setSortOrder(int columnIndex, SortOrder sortOrder)
Sorts the table by the given column using SortOrder.void
JXTable. setSortOrder(java.lang.Object identifier, SortOrder sortOrder)
Sorts the table by the given column using the SortOrder. -
Uses of SortOrder in org.jdesktop.swingx.decorator
Fields in org.jdesktop.swingx.decorator declared as SortOrder Modifier and Type Field Description static SortOrder
SortOrder. ASCENDING
static SortOrder
SortOrder. DESCENDING
static SortOrder
SortOrder. UNSORTED
Methods in org.jdesktop.swingx.decorator that return SortOrder Modifier and Type Method Description SortOrder
FilterPipeline.SorterBasedSortController. getSortOrder(int column)
SortOrder
SortController. getSortOrder(int column)
Get the sort order of the specified column.SortOrder
Sorter. getSortOrder()
SortOrder
SortKey. getSortOrder()
The sort order, ascending, descending or unsorted.Constructors in org.jdesktop.swingx.decorator with parameters of type SortOrder Constructor Description SortKey(SortOrder sortOrder, int column)
SortKey(SortOrder sortOrder, int column, java.util.Comparator comparator)
-