FileDocCategorySizeDatePackage
TableStringConverter.javaAPI DocJava SE 6 API1170Tue Jun 10 00:26:56 BST 2008javax.swing.table

TableStringConverter

public abstract class TableStringConverter extends Object
TableStringConverter is used to convert objects from the model into strings. This is useful in filtering and searching when the model returns objects that do not have meaningful toString implementations.
version
1.2 11/17/05
since
1.6

Fields Summary
Constructors Summary
Methods Summary
public abstract java.lang.StringtoString(javax.swing.table.TableModel model, int row, int column)
Returns the string representation of the value at the specified location.

param
model the TableModel to fetch the value from
param
row the row the string is being requested for
param
column the column the string is being requested for
return
the string representation. This should never return null.
throws
NullPointerException if model is null
throws
IndexOutOfBoundsException if the arguments are outside the bounds of the model