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.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
void |
JXList.setSortOrder(SortOrder sortOrder)
Sorts the list using SortOrder.
|
Modifier and Type | Field and Description |
---|---|
static SortOrder |
SortOrder.ASCENDING |
static SortOrder |
SortOrder.DESCENDING |
static SortOrder |
SortOrder.UNSORTED |
Modifier and Type | Method and Description |
---|---|
SortOrder |
SortKey.getSortOrder()
The sort order, ascending, descending or unsorted.
|
SortOrder |
Sorter.getSortOrder() |
SortOrder |
FilterPipeline.SorterBasedSortController.getSortOrder(int column) |
SortOrder |
SortController.getSortOrder(int column)
Get the sort order of the specified column.
|
Constructor and Description |
---|
SortKey(SortOrder sortOrder,
int column) |
SortKey(SortOrder sortOrder,
int column,
java.util.Comparator comparator) |