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 | 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 | 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.
|
Modifier and Type | Field | Description |
---|---|---|
static SortOrder |
SortOrder.ASCENDING |
|
static SortOrder |
SortOrder.DESCENDING |
|
static SortOrder |
SortOrder.UNSORTED |
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.
|
Constructor | Description |
---|---|
SortKey(SortOrder sortOrder,
int column) |
|
SortKey(SortOrder sortOrder,
int column,
java.util.Comparator comparator) |