Class TableRowSorter<M extends TableModel>
- Type Parameters:
M- the type of the model, which must be an implementation ofTableModel
RowSorter that provides sorting
and filtering using a TableModel.
The following example shows adding sorting to a JTable:
TableModel myModel = createMyTableModel(); JTable table = new JTable(myModel); table.setRowSorter(new TableRowSorter(myModel));This will do all the wiring such that when the user does the appropriate gesture, such as clicking on the column header, the table will visually sort.
JTable's row-based methods and JTable's
selection model refer to the view and not the underlying
model. Therefore, it is necessary to convert between the two. For
example, to get the selection in terms of myModel
you need to convert the indices:
int[] selection = table.getSelectedRows();
for (int i = 0; i < selection.length; i++) {
selection[i] = table.convertRowIndexToModel(selection[i]);
}
Similarly to select a row in JTable based on
a coordinate from the underlying model do the inverse:
table.setRowSelectionInterval(table.convertRowIndexToView(row),
table.convertRowIndexToView(row));
The previous example assumes you have not enabled filtering. If you
have enabled filtering convertRowIndexToView will return
-1 for locations that are not visible in the view.
TableRowSorter uses Comparators for doing
comparisons. The following defines how a Comparator is
chosen for a column:
- If a
Comparatorhas been specified for the column by thesetComparatormethod, use it. - If the column class as returned by
getColumnClassisString, use theComparatorreturned byCollator.getInstance(). - If the column class implements
Comparable, use aComparatorthat invokes thecompareTomethod. - If a
TableStringConverterhas been specified, use it to convert the values toStrings and then use theComparatorreturned byCollator.getInstance(). - Otherwise use the
Comparatorreturned byCollator.getInstance()on the results from callingtoStringon the objects.
In addition to sorting TableRowSorter provides the ability
to filter. A filter is specified using the setFilter
method. The following example will only show rows containing the string
"foo":
TableModel myModel = createMyTableModel();
TableRowSorter sorter = new TableRowSorter(myModel);
sorter.setRowFilter(RowFilter.regexFilter(".*foo.*"));
JTable table = new JTable(myModel);
table.setRowSorter(sorter);
If the underlying model structure changes (the
modelStructureChanged method is invoked) the following
are reset to their default values: Comparators by
column, current sort order, and whether each column is sortable. The default
sort order is natural (the same as the model), and columns are
sortable by default.
TableRowSorter has one formal type parameter: the type
of the model. Passing in a type that corresponds exactly to your
model allows you to filter based on your model without casting.
Refer to the documentation of RowFilter for an example
of this.
WARNING: DefaultTableModel returns a column
class of Object. As such all comparisons will
be done using toString. This may be unnecessarily
expensive. If the column only contains one type of value, such as
an Integer, you should override getColumnClass and
return the appropriate Class. This will dramatically
increase the performance of this class.
- Since:
- 1.6
- See Also:
-
Nested Class Summary
Nested classes/interfaces declared in class DefaultRowSorter
DefaultRowSorter.ModelWrapper<M,I> Modifier and TypeClassDescriptionprotected static classDefaultRowSorter.ModelWrapperis responsible for providing the data that gets sorted byDefaultRowSorter.Nested classes/interfaces declared in class RowSorter
RowSorter.SortKeyModifier and TypeClassDescriptionstatic classSortKey describes the sort order for a particular column. -
Constructor Summary
ConstructorsConstructorDescriptionCreates aTableRowSorterwith an empty model.TableRowSorter(M model) Creates aTableRowSorterusingmodelas the underlyingTableModel. -
Method Summary
Modifier and TypeMethodDescriptionComparator<?> getComparator(int column) Returns theComparatorfor the specified column.Returns the object responsible for converting values from the model to strings.voidSets theTableModelto use as the underlying model for thisTableRowSorter.voidsetStringConverter(TableStringConverter stringConverter) Sets the object responsible for converting values from the model to strings.protected booleanuseToString(int column) Returns whether or not to convert the value to a string before doing comparisons when sorting.Methods declared in class DefaultRowSorter
allRowsChanged, convertRowIndexToModel, convertRowIndexToView, getMaxSortKeys, getModel, getModelRowCount, getModelWrapper, getRowFilter, getSortKeys, getSortsOnUpdates, getViewRowCount, isSortable, modelStructureChanged, rowsDeleted, rowsInserted, rowsUpdated, rowsUpdated, setComparator, setMaxSortKeys, setModelWrapper, setRowFilter, setSortable, setSortKeys, setSortsOnUpdates, sort, toggleSortOrderModifier and TypeMethodDescriptionvoidInvoked when the contents of the underlying model have completely changed.intconvertRowIndexToModel(int index) Returns the location ofindexin terms of the underlying model.intconvertRowIndexToView(int index) Returns the location ofindexin terms of the view.intReturns the maximum number of sort keys.final MgetModel()Returns the underlying model.intReturns the number of rows in the underlying model.protected final DefaultRowSorter.ModelWrapper<M, Integer> Returns the model wrapper providing the data that is being sorted and filtered.Returns the filter that determines which rows, if any, should be hidden from view.List<? extends RowSorter.SortKey> Returns the current sort keys.booleanReturns true if a sort should happen when the underlying model is updated; otherwise, returns false.intReturns the number of rows in the view.booleanisSortable(int column) Returns true if the specified column is sortable; otherwise, false.voidInvoked when the underlying model structure has completely changed.voidrowsDeleted(int firstRow, int endRow) Invoked when rows have been deleted from the underlying model in the specified range (inclusive).voidrowsInserted(int firstRow, int endRow) Invoked when rows have been inserted into the underlying model in the specified range (inclusive).voidrowsUpdated(int firstRow, int endRow) Invoked when rows have been changed in the underlying model between the specified range (inclusive).voidrowsUpdated(int firstRow, int endRow, int column) Invoked when the column in the rows have been updated in the underlying model between the specified range.voidsetComparator(int column, Comparator<?> comparator) Sets theComparatorto use when sorting the specified column.voidsetMaxSortKeys(int max) Sets the maximum number of sort keys.protected final voidsetModelWrapper(DefaultRowSorter.ModelWrapper<M, Integer> modelWrapper) Sets the model wrapper providing the data that is being sorted and filtered.voidsetRowFilter(RowFilter<? super M, ? super Integer> filter) Sets the filter that determines which rows, if any, should be hidden from the view.voidsetSortable(int column, boolean sortable) Sets whether or not the specified column is sortable.voidsetSortKeys(List<? extends RowSorter.SortKey> sortKeys) Sets the sort keys.voidsetSortsOnUpdates(boolean sortsOnUpdates) If true, specifies that a sort should happen when the underlying model is updated (rowsUpdatedis invoked).voidsort()Sorts and filters the rows in the view based on the sort keys of the columns currently being sorted and the filter, if any, associated with this sorter.voidtoggleSortOrder(int column) Reverses the sort order from ascending to descending (or descending to ascending) if the specified column is already the primary sorted column; otherwise, makes the specified column the primary sorted column, with an ascending sort order.Methods declared in class RowSorter
addRowSorterListener, fireRowSorterChanged, fireSortOrderChanged, removeRowSorterListenerModifier and TypeMethodDescriptionvoidAdds aRowSorterListenerto receive notification about thisRowSorter.protected voidfireRowSorterChanged(int[] lastRowIndexToModel) Notifies listener that the mapping has changed.protected voidNotifies listener that the sort order has changed.voidRemoves aRowSorterListener.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
TableRowSorter
public TableRowSorter()Creates aTableRowSorterwith an empty model. -
TableRowSorter
Creates aTableRowSorterusingmodelas the underlyingTableModel.- Parameters:
model- the underlyingTableModelto use,nullis treated as an empty model
-
-
Method Details
-
setModel
Sets theTableModelto use as the underlying model for thisTableRowSorter. A value ofnullcan be used to set an empty model.- Parameters:
model- the underlying model to use, ornull
-
setStringConverter
Sets the object responsible for converting values from the model to strings. If non-nullthis is used to convert any object values, that do not have a registeredComparator, to strings.- Parameters:
stringConverter- the object responsible for converting values from the model to strings
-
getStringConverter
Returns the object responsible for converting values from the model to strings.- Returns:
- object responsible for converting values to strings.
-
getComparator
Returns theComparatorfor the specified column. If aComparatorhas not been specified using thesetComparatormethod aComparatorwill be returned based on the column class (TableModel.getColumnClass) of the specified column. If the column class isString,Collator.getInstanceis returned. If the column class implementsComparablea privateComparatoris returned that invokes thecompareTomethod. OtherwiseCollator.getInstanceis returned.- Overrides:
getComparatorin classDefaultRowSorter<M extends TableModel, Integer>- Parameters:
column- the column to fetch theComparatorfor, in terms of the underlying model- Returns:
- the
Comparatorfor the specified column - Throws:
IndexOutOfBoundsException- if column is outside the range of the underlying model
-
useToString
protected boolean useToString(int column) Returns whether or not to convert the value to a string before doing comparisons when sorting. If trueModelWrapper.getStringValueAtwill be used, otherwiseModelWrapper.getValueAtwill be used. It is up to subclasses, such asTableRowSorter, to honor this value in theirModelWrapperimplementation.- Overrides:
useToStringin classDefaultRowSorter<M extends TableModel, Integer>- Parameters:
column- the index of the column to test, in terms of the underlying model- Returns:
- true if values are to be converted to strings before doing comparisons when sorting
- Throws:
IndexOutOfBoundsException- ifcolumnis not valid
-