java.lang.Object javax.swing.table.TableStringConverter
public abstract class TableStringConverter
TableStringConverter 用于将对象从模型转换为字符串。当模型返回不具有有意义的 toString
实现的对象时,此类用于过滤和搜索操作。
构造方法摘要 | |
---|---|
TableStringConverter() |
方法摘要 | |
---|---|
abstract String |
toString(TableModel model, int row, int column) 返回指定位置处值的字符串表示形式。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
public TableStringConverter()
方法详细信息 |
---|
public abstract String toString(TableModel model, int row, int column)
model
- 要从中获取值的
TableModel
row
- 向其请求字符串的行
column
- 向其请求字符串的列
NullPointerException
- 如果
model
为 null
IndexOutOfBoundsException
- 如果参数超出模型的范围